Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- BuyAndBurn
- Optimization enabled
- false
- Compiler version
- v0.8.25+commit.b61c2a91
- EVM Version
- paris
- Verified at
- 2024-04-04T15:06:56.368277Z
contracts/BuyAndBurn.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol";
import "./interfaces/IInternetMoneyRouter.sol";
import "./interfaces/IPiteasRouter.sol";
import "./interfaces/IPermaGIFF.sol";
contract BuyAndBurn is Initializable, UUPSUpgradeable, OwnableUpgradeable, PausableUpgradeable, ReentrancyGuardUpgradeable {
using ECDSAUpgradeable for bytes32;
struct Signature {
bytes32 r;
bytes32 s;
uint8 v;
}
IInternetMoneyRouter public internetMoneyRouter;
IPermaGIFF public permaGiff;
/// The timestamp of the last action i.e. last time exec was called
uint256 public lastActionTs;
/// how often can users call the public exec method. This value is in seconds
uint256 public frequence;
/// min PLS balance the contract should have so exec can be called and be swapped
uint256 public swapAmount;
/// The operator which is the signer of all access tokens that are required by the exec function
address public operator;
/// Stores all the access tokens that have been already used to avoid replay attacks
mapping(bytes32 => bool) public usedAccessTokens;
IPiteasRouter public piteasRouter;
error ValueMismatch(uint256 consumed, uint256 provided);
event SettingUpdated(uint256 frequence, uint256 swapAmount);
event BoughtAndBurnt(address indexed account, uint256 ts, uint256 amount);
modifier onlyIfAllowed {
require(address(this).balance >= swapAmount, "Not enough PLS balance");
require(block.timestamp - lastActionTs >= frequence, "Too often");
_;
lastActionTs = block.timestamp;
}
modifier onlyValidAccessToken(bytes32 nonce, Signature memory sig) {
bytes32 accessToken = keccak256(abi.encodePacked(
address(this),
block.chainid,
_msgSender(),
swapAmount,
nonce
));
require(!usedAccessTokens[accessToken], "Access token already used");
address signer = accessToken.toEthSignedMessageHash().recover(sig.v, sig.r, sig.s);
require(signer == operator, "Invalid access token signer");
usedAccessTokens[accessToken] = true;
_;
}
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() {
_disableInitializers();
}
// Function to allow contract to receive PLS
receive() external payable {}
/// @notice Initializer
///
/// @param owner the owner of this contract
/// @param _internetMoneyRouter the internetMoneyRouter contract address
function initialize(
address owner,
IInternetMoneyRouter _internetMoneyRouter
) external initializer {
__Ownable_init();
__Pausable_init();
transferOwnership(owner);
internetMoneyRouter = _internetMoneyRouter;
}
/// To authorize the owner to upgrade the contract we implement
/// _authorizeUpgrade with the onlyOwner modifier.
function _authorizeUpgrade(address) internal override onlyOwner {}
function pause() external onlyOwner {
_pause();
}
function unpause() external onlyOwner {
_unpause();
}
/// @notice sets the permaGiff token account
/// @dev only onwer can call this function
function setPermaGiff(IPermaGIFF _permaGiff) external onlyOwner {
permaGiff = _permaGiff;
}
/// @notice updates the operator account that signs the access tokens
/// @dev only onwer can call this function
function setOperator(address _operator) external onlyOwner {
operator = _operator;
}
/// @notice updates the setting of the contract
/// @dev only onwer can call this function
///
/// @param _frequence how often can users call the public exec method
/// @param _swapAmount min PLS balance the contract should have so exec can be called and be swapped
function updateSettings(uint256 _frequence, uint256 _swapAmount) external onlyOwner {
frequence = _frequence;
swapAmount = _swapAmount;
emit SettingUpdated(frequence, swapAmount);
}
/// @notice allows anyone to call this function as long as the criteria are met.
///
/// @param piteasCalldata The calldata we receive from the Piteas Quote Endpoint. Should not include the first four bytes
/// for the function selector (8218b58f), clientshould truncate it.
/// @param nonce replay-attack nonce protection
/// @param sig The signature from the operator that commits to the amount (swapAmount). We need this
/// since anyone could call the Piteas API and request a quote for arbitraty PLS amount. This way we can
/// be sure that the quote was requested by out back-end and was signed by an operator we control.
function exec(
bytes calldata piteasCalldata,
bytes32 nonce,
Signature memory sig
) public onlyIfAllowed onlyValidAccessToken(nonce, sig) nonReentrant {
uint256 balanceBefore = permaGiff.balanceOf(address(this));
(IPiteasRouter.Detail memory detail, bytes memory remainingCalldata) = abi.decode(
piteasCalldata, (IPiteasRouter.Detail, bytes)
);
uint256 amountOut = IPiteasRouter(piteasRouter)
.swap{value: swapAmount}(detail, remainingCalldata);
uint256 balanceAfter = permaGiff.balanceOf(address(this));
uint256 permaGiffReceived = balanceAfter - balanceBefore;
if(amountOut != permaGiffReceived) {
revert ValueMismatch(amountOut, permaGiffReceived);
}
permaGiff.burn(permaGiffReceived);
emit BoughtAndBurnt(_msgSender(), block.timestamp, permaGiffReceived);
}
/// @notice Allows owner to update the piteas router
///
/// @param _piteasRouter the new piteas router
function setPiteasRouter(IPiteasRouter _piteasRouter) external onlyOwner {
piteasRouter = _piteasRouter;
}
}
@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../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.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
@openzeppelin/contracts-upgradeable/interfaces/IERC1967Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)
pragma solidity ^0.8.0;
/**
* @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
*
* _Available since v4.8.3._
*/
interface IERC1967Upgradeable {
/**
* @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);
}
@openzeppelin/contracts-upgradeable/interfaces/draft-IERC1822Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)
pragma solidity ^0.8.0;
/**
* @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 IERC1822ProxiableUpgradeable {
/**
* @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);
}
@openzeppelin/contracts-upgradeable/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)
pragma solidity ^0.8.2;
import "../beacon/IBeaconUpgradeable.sol";
import "../../interfaces/IERC1967Upgradeable.sol";
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../../utils/AddressUpgradeable.sol";
import "../../utils/StorageSlotUpgradeable.sol";
import {Initializable} from "../utils/Initializable.sol";
/**
* @dev This abstract contract provides getters and event emitting update functions for
* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
*
* _Available since v4.1._
*/
abstract contract ERC1967UpgradeUpgradeable is Initializable, IERC1967Upgradeable {
// This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;
/**
* @dev Storage slot with the address of the current implementation.
* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
function __ERC1967Upgrade_init() internal onlyInitializing {
}
function __ERC1967Upgrade_init_unchained() internal onlyInitializing {
}
/**
* @dev Returns the current implementation address.
*/
function _getImplementation() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 implementation slot.
*/
function _setImplementation(address newImplementation) private {
require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract");
StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
}
/**
* @dev Perform implementation upgrade
*
* Emits an {Upgraded} event.
*/
function _upgradeTo(address newImplementation) internal {
_setImplementation(newImplementation);
emit Upgraded(newImplementation);
}
/**
* @dev Perform implementation upgrade with additional setup call.
*
* Emits an {Upgraded} event.
*/
function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {
_upgradeTo(newImplementation);
if (data.length > 0 || forceCall) {
AddressUpgradeable.functionDelegateCall(newImplementation, data);
}
}
/**
* @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
*
* Emits an {Upgraded} event.
*/
function _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal {
// Upgrades from old implementations will perform a rollback test. This test requires the new
// implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
// this special case will break upgrade paths from old UUPS implementation to new ones.
if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {
_setImplementation(newImplementation);
} else {
try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {
require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
} catch {
revert("ERC1967Upgrade: new implementation is not UUPS");
}
_upgradeToAndCall(newImplementation, data, forceCall);
}
}
/**
* @dev Storage slot with the admin of the contract.
* This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
* validated in the constructor.
*/
bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
/**
* @dev Returns the current admin.
*/
function _getAdmin() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;
}
/**
* @dev Stores a new address in the EIP1967 admin slot.
*/
function _setAdmin(address newAdmin) private {
require(newAdmin != address(0), "ERC1967: new admin is the zero address");
StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
}
/**
* @dev Changes the admin of the proxy.
*
* Emits an {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 bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
*/
bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
/**
* @dev Returns the current beacon.
*/
function _getBeacon() internal view returns (address) {
return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;
}
/**
* @dev Stores a new beacon in the EIP1967 beacon slot.
*/
function _setBeacon(address newBeacon) private {
require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract");
require(
AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),
"ERC1967: beacon implementation is not a contract"
);
StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;
}
/**
* @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
* not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
*
* Emits a {BeaconUpgraded} event.
*/
function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {
_setBeacon(newBeacon);
emit BeaconUpgraded(newBeacon);
if (data.length > 0 || forceCall) {
AddressUpgradeable.functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);
}
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
@openzeppelin/contracts-upgradeable/proxy/beacon/IBeaconUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)
pragma solidity ^0.8.0;
/**
* @dev This is the interface that {BeaconProxy} expects of its beacon.
*/
interface IBeaconUpgradeable {
/**
* @dev Must return an address that can be used as a delegate call target.
*
* {BeaconProxy} will check that this address is a contract.
*/
function implementation() external view returns (address);
}
@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}
@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/UUPSUpgradeable.sol)
pragma solidity ^0.8.0;
import "../../interfaces/draft-IERC1822Upgradeable.sol";
import "../ERC1967/ERC1967UpgradeUpgradeable.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.
*
* _Available since v4.1._
*/
abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment
address private immutable __self = address(this);
/**
* @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() {
require(address(this) != __self, "Function must be called through delegatecall");
require(_getImplementation() == __self, "Function must be called through active proxy");
_;
}
/**
* @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() {
require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall");
_;
}
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 override notDelegated returns (bytes32) {
return _IMPLEMENTATION_SLOT;
}
/**
* @dev Upgrade the implementation of the proxy to `newImplementation`.
*
* Calls {_authorizeUpgrade}.
*
* Emits an {Upgraded} event.
*
* @custom:oz-upgrades-unsafe-allow-reachable delegatecall
*/
function upgradeTo(address newImplementation) public virtual onlyProxy {
_authorizeUpgrade(newImplementation);
_upgradeToAndCallUUPS(newImplementation, new bytes(0), false);
}
/**
* @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, true);
}
/**
* @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by
* {upgradeTo} and {upgradeToAndCall}.
*
* Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.
*
* ```solidity
* function _authorizeUpgrade(address) internal override onlyOwner {}
* ```
*/
function _authorizeUpgrade(address newImplementation) internal virtual;
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
function __Pausable_init() internal onlyInitializing {
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal onlyInitializing {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuardUpgradeable is Initializable {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
function __ReentrancyGuard_init() internal onlyInitializing {
__ReentrancyGuard_init_unchained();
}
function __ReentrancyGuard_init_unchained() internal onlyInitializing {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}
@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
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;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}
@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.0;
/**
* @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(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*
* _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._
* _Available since v4.9 for `string`, `bytes`._
*/
library StorageSlotUpgradeable {
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
}
}
}
@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/MathUpgradeable.sol";
import "./math/SignedMathUpgradeable.sol";
/**
* @dev String operations.
*/
library StringsUpgradeable {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = MathUpgradeable.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMathUpgradeable.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, MathUpgradeable.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}
@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.0;
import "../StringsUpgradeable.sol";
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSAUpgradeable {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS,
InvalidSignatureV // Deprecated in v4.8
}
function _throwError(RecoverError error) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert("ECDSA: invalid signature");
} else if (error == RecoverError.InvalidSignatureLength) {
revert("ECDSA: invalid signature length");
} else if (error == RecoverError.InvalidSignatureS) {
revert("ECDSA: invalid signature 's' value");
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature` or error string. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength);
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, signature);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*
* _Available since v4.2._
*/
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, r, vs);
_throwError(error);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*
* _Available since v4.3._
*/
function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature);
}
return (signer, RecoverError.NoError);
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
(address recovered, RecoverError error) = tryRecover(hash, v, r, s);
_throwError(error);
return recovered;
}
/**
* @dev Returns an Ethereum Signed Message, created from a `hash`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
// 32 is the length in bytes of hash,
// enforced by the type signature above
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32")
mstore(0x1c, hash)
message := keccak256(0x00, 0x3c)
}
}
/**
* @dev Returns an Ethereum Signed Message, created from `s`. This
* produces hash corresponding to the one signed with the
* https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
* JSON-RPC method as part of EIP-191.
*
* See {recover}.
*/
function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", StringsUpgradeable.toString(s.length), s));
}
/**
* @dev Returns an Ethereum Signed Typed Data, created from a
* `domainSeparator` and a `structHash`. This produces hash corresponding
* to the one signed with the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
* JSON-RPC method as part of EIP-712.
*
* See {recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, "\x19\x01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
data := keccak256(ptr, 0x42)
}
}
/**
* @dev Returns an Ethereum Signed Data with intended validator, created from a
* `validator` and `data` according to the version 0 of EIP-191.
*
* See {recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked("\x19\x00", validator, data));
}
}
@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library MathUpgradeable {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}
@openzeppelin/contracts-upgradeable/utils/math/SignedMathUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMathUpgradeable {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}
@openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @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 amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` 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 amount) external returns (bool);
}
contracts/interfaces/IInternetMoneyRouter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;
interface IInternetMoneyRouter {
function swapPiteas(uint256 dexId, bytes calldata piteasCalldata) external payable;
}
contracts/interfaces/IPermaGIFF.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.25;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IPermaGIFF is IERC20 {
function burn(uint256 amount) external;
}
contracts/interfaces/IPiteasRouter.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.25;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IPiteasRouter {
struct Detail {
IERC20 srcToken;
IERC20 destToken;
address payable destAccount;
uint256 srcAmount;
uint256 destMinAmount;
}
function swap(
Detail memory detail,
bytes calldata data)
external payable returns (uint256);
}
Compiler Settings
{"outputSelection":{"*":{"*":["*"],"":["*"]}},"optimizer":{"runs":200,"enabled":false},"libraries":{},"evmVersion":"paris"}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"error","name":"ValueMismatch","inputs":[{"type":"uint256","name":"consumed","internalType":"uint256"},{"type":"uint256","name":"provided","internalType":"uint256"}]},{"type":"event","name":"AdminChanged","inputs":[{"type":"address","name":"previousAdmin","internalType":"address","indexed":false},{"type":"address","name":"newAdmin","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"BeaconUpgraded","inputs":[{"type":"address","name":"beacon","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"BoughtAndBurnt","inputs":[{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"uint256","name":"ts","internalType":"uint256","indexed":false},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Initialized","inputs":[{"type":"uint8","name":"version","internalType":"uint8","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"SettingUpdated","inputs":[{"type":"uint256","name":"frequence","internalType":"uint256","indexed":false},{"type":"uint256","name":"swapAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Upgraded","inputs":[{"type":"address","name":"implementation","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"exec","inputs":[{"type":"bytes","name":"piteasCalldata","internalType":"bytes"},{"type":"bytes32","name":"nonce","internalType":"bytes32"},{"type":"tuple","name":"sig","internalType":"struct BuyAndBurn.Signature","components":[{"type":"bytes32","name":"r","internalType":"bytes32"},{"type":"bytes32","name":"s","internalType":"bytes32"},{"type":"uint8","name":"v","internalType":"uint8"}]}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"frequence","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initialize","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"_internetMoneyRouter","internalType":"contract IInternetMoneyRouter"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IInternetMoneyRouter"}],"name":"internetMoneyRouter","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lastActionTs","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"operator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IPermaGIFF"}],"name":"permaGiff","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IPiteasRouter"}],"name":"piteasRouter","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"proxiableUUID","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setOperator","inputs":[{"type":"address","name":"_operator","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPermaGiff","inputs":[{"type":"address","name":"_permaGiff","internalType":"contract IPermaGIFF"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setPiteasRouter","inputs":[{"type":"address","name":"_piteasRouter","internalType":"contract IPiteasRouter"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"swapAmount","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateSettings","inputs":[{"type":"uint256","name":"_frequence","internalType":"uint256"},{"type":"uint256","name":"_swapAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"upgradeTo","inputs":[{"type":"address","name":"newImplementation","internalType":"address"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"upgradeToAndCall","inputs":[{"type":"address","name":"newImplementation","internalType":"address"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"usedAccessTokens","inputs":[{"type":"bytes32","name":"","internalType":"bytes32"}]},{"type":"receive","stateMutability":"payable"}]
Contract Creation Code
0x60a06040523073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1681525034801561004357600080fd5b5061005261005760201b60201c565b6101f1565b600060019054906101000a900460ff16156100a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161009e9061019a565b60405180910390fd5b60ff801660008054906101000a900460ff1660ff16146101155760ff6000806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff60405161010c91906101d6565b60405180910390a15b565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e69746960008201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b6000610184602783610117565b915061018f82610128565b604082019050919050565b600060208201905081810360008301526101b381610177565b9050919050565b600060ff82169050919050565b6101d0816101ba565b82525050565b60006020820190506101eb60008301846101c7565b92915050565b6080516136fe610228600039600081816105bc0152818161064a01528181610931015281816109bf0152610a6f01526136fe6000f3fe6080604052600436106101445760003560e01c8063570ca735116100b6578063b2bca6271161006f578063b2bca627146103e8578063b3ab15fb14610413578063c75d02041461043c578063cd55558a14610467578063d961ec9514610490578063f2fde38b146104bb5761014b565b8063570ca735146103105780635c975abb1461033b578063715018a6146103665780638456cb591461037d5780638da5cb5b146103945780639fc0907b146103bf5761014b565b80633f4ba83a116101085780633f4ba83a146102215780634093403a14610238578063485cc95514610275578063495ba6351461029e5780634f1ef286146102c957806352d1902d146102e55761014b565b8063015af8ee146101505780630eae4536146101795780632e8fa821146101a2578063320132a6146101cd5780633659cfe6146101f85761014b565b3661014b57005b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611eb3565b6104e4565b005b34801561018557600080fd5b506101a0600480360381019061019b9190611f63565b61053f565b005b3480156101ae57600080fd5b506101b761058c565b6040516101c49190611f9f565b60405180910390f35b3480156101d957600080fd5b506101e2610593565b6040516101ef9190612019565b60405180910390f35b34801561020457600080fd5b5061021f600480360381019061021a9190612060565b6105ba565b005b34801561022d57600080fd5b50610236610742565b005b34801561024457600080fd5b5061025f600480360381019061025a91906120c3565b610754565b60405161026c919061210b565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190612164565b610775565b005b3480156102aa57600080fd5b506102b3610908565b6040516102c091906121c5565b60405180910390f35b6102e360048036038101906102de9190612326565b61092f565b005b3480156102f157600080fd5b506102fa610a6b565b6040516103079190612391565b60405180910390f35b34801561031c57600080fd5b50610325610b24565b60405161033291906123bb565b60405180910390f35b34801561034757600080fd5b50610350610b4b565b60405161035d919061210b565b60405180910390f35b34801561037257600080fd5b5061037b610b62565b005b34801561038957600080fd5b50610392610b76565b005b3480156103a057600080fd5b506103a9610b88565b6040516103b691906123bb565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e191906124d8565b610bb2565b005b3480156103f457600080fd5b506103fd61113e565b60405161040a9190611f9f565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612060565b611145565b005b34801561044857600080fd5b50610451611192565b60405161045e919061256d565b60405180910390f35b34801561047357600080fd5b5061048e600480360381019061048991906125c6565b6111b9565b005b34801561049c57600080fd5b506104a5611206565b6040516104b29190611f9f565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd9190612060565b61120d565b005b6104ec611290565b816101308190555080610131819055507ff3e4c1a93650c97dbf12747464077358c6b0f8f4b91443502bcb0cffb106c19e61013054610131546040516105339291906125f3565b60405180910390a15050565b610547611290565b8061012e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6101315481565b61012d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1603610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f9061269f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661068761130e565b73ffffffffffffffffffffffffffffffffffffffff16146106dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d490612731565b60405180910390fd5b6106e681611365565b61073f81600067ffffffffffffffff811115610705576107046121fb565b5b6040519080825280601f01601f1916602001820160405280156107375781602001600182028036833780820191505090505b506000611370565b50565b61074a611290565b6107526114de565b565b6101336020528060005260406000206000915054906101000a900460ff1681565b60008060019054906101000a900460ff161590508080156107a65750600160008054906101000a900460ff1660ff16105b806107d357506107b530611541565b1580156107d25750600160008054906101000a900460ff1660ff16145b5b610812576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610809906127c3565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801561084f576001600060016101000a81548160ff0219169083151502179055505b610857611564565b61085f6115bd565b6108688361120d565b8161012d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156109035760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516108fa919061281e565b60405180910390a15b505050565b61012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16036109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b49061269f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166109fc61130e565b73ffffffffffffffffffffffffffffffffffffffff1614610a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4990612731565b60405180910390fd5b610a5b82611365565b610a6782826001611370565b5050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af2906128ab565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b61013260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060c960009054906101000a900460ff16905090565b610b6a611290565b610b746000611616565b565b610b7e611290565b610b866116dc565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61013154471015610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90612917565b60405180910390fd5b6101305461012f5442610c0b9190612966565b1015610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c43906129e6565b60405180910390fd5b818160003046610c5a61173f565b6101315486604051602001610c73959493929190612a90565b604051602081830303815290604052805190602001209050610133600082815260200190815260200160002060009054906101000a900460ff1615610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490612b3b565b60405180910390fd5b6000610d1a836040015184600001518560200151610d0a86611747565b61177d909392919063ffffffff16565b905061013260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490612ba7565b60405180910390fd5b6001610133600084815260200190815260200160002060006101000a81548160ff021916908315150217905550610de26117a8565b600061012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e4091906123bb565b602060405180830381865afa158015610e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e819190612bdc565b90506000808a8a810190610e959190612d11565b91509150600061013460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638218b58f6101315485856040518463ffffffff1660e01b8152600401610efd929190612e93565b60206040518083038185885af1158015610f1b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f409190612bdc565b9050600061012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fa091906123bb565b602060405180830381865afa158015610fbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe19190612bdc565b905060008582610ff19190612966565b90508083146110395782816040517f626ade300000000000000000000000000000000000000000000000000000000081526004016110309291906125f3565b60405180910390fd5b61012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b81526004016110959190611f9f565b600060405180830381600087803b1580156110af57600080fd5b505af11580156110c3573d6000803e3d6000fd5b505050506110cf61173f565b73ffffffffffffffffffffffffffffffffffffffff167f5193fe3b7a9564dca5970c8b10def87cd842eddeffe4003191e5c6ddb141462642836040516111169291906125f3565b60405180910390a250505050505061112c6117f7565b505050504261012f8190555050505050565b61012f5481565b61114d611290565b8061013260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61013460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111c1611290565b8061013460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6101305481565b611215611290565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90612f35565b60405180910390fd5b61128d81611616565b50565b61129861173f565b73ffffffffffffffffffffffffffffffffffffffff166112b6610b88565b73ffffffffffffffffffffffffffffffffffffffff161461130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390612fa1565b60405180910390fd5b565b600061133c7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b611801565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61136d611290565b50565b61139c7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914360001b61180b565b60000160009054906101000a900460ff16156113c0576113bb83611815565b6114d9565b8273ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561142857506040513d601f19601f820116820180604052508101906114259190612fd6565b60015b611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90613075565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b81146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613107565b60405180910390fd5b506114d88383836118ce565b5b505050565b6114e66118fa565b600060c960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61152a61173f565b60405161153791906123bb565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff166115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90613199565b60405180910390fd5b6115bb611943565b565b600060019054906101000a900460ff1661160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613199565b60405180910390fd5b6116146119a4565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116e4611a10565b600160c960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861172861173f565b60405161173591906123bb565b60405180910390a1565b600033905090565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b600080600061178e87878787611a5a565b9150915061179b81611b3c565b8192505050949350505050565b600260fb54036117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490613205565b60405180910390fd5b600260fb81905550565b600160fb81905550565b6000819050919050565b6000819050919050565b61181e81611541565b61185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490613297565b60405180910390fd5b8061188a7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b611801565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118d783611ca2565b6000825111806118e45750805b156118f5576118f38383611cf1565b505b505050565b611902610b4b565b611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613303565b60405180910390fd5b565b600060019054906101000a900460ff16611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613199565b60405180910390fd5b6119a261199d61173f565b611616565b565b600060019054906101000a900460ff166119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613199565b60405180910390fd5b600060c960006101000a81548160ff021916908315150217905550565b611a18610b4b565b15611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f9061336f565b60405180910390fd5b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611a95576000600391509150611b33565b600060018787878760405160008152602001604052604051611aba949392919061339e565b6020604051602081039080840390855afa158015611adc573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b2a57600060019250925050611b33565b80600092509250505b94509492505050565b60006004811115611b5057611b4f6133e3565b5b816004811115611b6357611b626133e3565b5b0315611c9f5760016004811115611b7d57611b7c6133e3565b5b816004811115611b9057611b8f6133e3565b5b03611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc79061345e565b60405180910390fd5b60026004811115611be457611be36133e3565b5b816004811115611bf757611bf66133e3565b5b03611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906134ca565b60405180910390fd5b60036004811115611c4b57611c4a6133e3565b5b816004811115611c5e57611c5d6133e3565b5b03611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c959061355c565b60405180910390fd5b5b50565b611cab81611815565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b6060611d1683836040518060600160405280602781526020016136a260279139611d1e565b905092915050565b60606000808573ffffffffffffffffffffffffffffffffffffffff1685604051611d4891906135b8565b600060405180830381855af49150503d8060008114611d83576040519150601f19603f3d011682016040523d82523d6000602084013e611d88565b606091505b5091509150611d9986838387611da4565b925050509392505050565b60608315611e06576000835103611dfe57611dbe85611541565b611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df49061361b565b60405180910390fd5b5b829050611e11565b611e108383611e19565b5b949350505050565b600082511115611e2c5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e60919061367f565b60405180910390fd5b6000604051905090565b600080fd5b600080fd5b6000819050919050565b611e9081611e7d565b8114611e9b57600080fd5b50565b600081359050611ead81611e87565b92915050565b60008060408385031215611eca57611ec9611e73565b5b6000611ed885828601611e9e565b9250506020611ee985828601611e9e565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f1e82611ef3565b9050919050565b6000611f3082611f13565b9050919050565b611f4081611f25565b8114611f4b57600080fd5b50565b600081359050611f5d81611f37565b92915050565b600060208284031215611f7957611f78611e73565b5b6000611f8784828501611f4e565b91505092915050565b611f9981611e7d565b82525050565b6000602082019050611fb46000830184611f90565b92915050565b6000819050919050565b6000611fdf611fda611fd584611ef3565b611fba565b611ef3565b9050919050565b6000611ff182611fc4565b9050919050565b600061200382611fe6565b9050919050565b61201381611ff8565b82525050565b600060208201905061202e600083018461200a565b92915050565b61203d81611f13565b811461204857600080fd5b50565b60008135905061205a81612034565b92915050565b60006020828403121561207657612075611e73565b5b60006120848482850161204b565b91505092915050565b6000819050919050565b6120a08161208d565b81146120ab57600080fd5b50565b6000813590506120bd81612097565b92915050565b6000602082840312156120d9576120d8611e73565b5b60006120e7848285016120ae565b91505092915050565b60008115159050919050565b612105816120f0565b82525050565b600060208201905061212060008301846120fc565b92915050565b600061213182611f13565b9050919050565b61214181612126565b811461214c57600080fd5b50565b60008135905061215e81612138565b92915050565b6000806040838503121561217b5761217a611e73565b5b60006121898582860161204b565b925050602061219a8582860161214f565b9150509250929050565b60006121af82611fe6565b9050919050565b6121bf816121a4565b82525050565b60006020820190506121da60008301846121b6565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612233826121ea565b810181811067ffffffffffffffff82111715612252576122516121fb565b5b80604052505050565b6000612265611e69565b9050612271828261222a565b919050565b600067ffffffffffffffff821115612291576122906121fb565b5b61229a826121ea565b9050602081019050919050565b82818337600083830152505050565b60006122c96122c484612276565b61225b565b9050828152602081018484840111156122e5576122e46121e5565b5b6122f08482856122a7565b509392505050565b600082601f83011261230d5761230c6121e0565b5b813561231d8482602086016122b6565b91505092915050565b6000806040838503121561233d5761233c611e73565b5b600061234b8582860161204b565b925050602083013567ffffffffffffffff81111561236c5761236b611e78565b5b612378858286016122f8565b9150509250929050565b61238b8161208d565b82525050565b60006020820190506123a66000830184612382565b92915050565b6123b581611f13565b82525050565b60006020820190506123d060008301846123ac565b92915050565b600080fd5b600080fd5b60008083601f8401126123f6576123f56121e0565b5b8235905067ffffffffffffffff811115612413576124126123d6565b5b60208301915083600182028301111561242f5761242e6123db565b5b9250929050565b600080fd5b600060ff82169050919050565b6124518161243b565b811461245c57600080fd5b50565b60008135905061246e81612448565b92915050565b60006060828403121561248a57612489612436565b5b612494606061225b565b905060006124a4848285016120ae565b60008301525060206124b8848285016120ae565b60208301525060406124cc8482850161245f565b60408301525092915050565b60008060008060a085870312156124f2576124f1611e73565b5b600085013567ffffffffffffffff8111156125105761250f611e78565b5b61251c878288016123e0565b9450945050602061252f878288016120ae565b925050604061254087828801612474565b91505092959194509250565b600061255782611fe6565b9050919050565b6125678161254c565b82525050565b6000602082019050612582600083018461255e565b92915050565b600061259382611f13565b9050919050565b6125a381612588565b81146125ae57600080fd5b50565b6000813590506125c08161259a565b92915050565b6000602082840312156125dc576125db611e73565b5b60006125ea848285016125b1565b91505092915050565b60006040820190506126086000830185611f90565b6126156020830184611f90565b9392505050565b600082825260208201905092915050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f64656c656761746563616c6c0000000000000000000000000000000000000000602082015250565b6000612689602c8361261c565b91506126948261262d565b604082019050919050565b600060208201905081810360008301526126b88161267c565b9050919050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f6163746976652070726f78790000000000000000000000000000000000000000602082015250565b600061271b602c8361261c565b9150612726826126bf565b604082019050919050565b6000602082019050818103600083015261274a8161270e565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006127ad602e8361261c565b91506127b882612751565b604082019050919050565b600060208201905081810360008301526127dc816127a0565b9050919050565b6000819050919050565b60006128086128036127fe846127e3565b611fba565b61243b565b9050919050565b612818816127ed565b82525050565b6000602082019050612833600083018461280f565b92915050565b7f555550535570677261646561626c653a206d757374206e6f742062652063616c60008201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000602082015250565b600061289560388361261c565b91506128a082612839565b604082019050919050565b600060208201905081810360008301526128c481612888565b9050919050565b7f4e6f7420656e6f75676820504c532062616c616e636500000000000000000000600082015250565b600061290160168361261c565b915061290c826128cb565b602082019050919050565b60006020820190508181036000830152612930816128f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061297182611e7d565b915061297c83611e7d565b925082820390508181111561299457612993612937565b5b92915050565b7f546f6f206f6674656e0000000000000000000000000000000000000000000000600082015250565b60006129d060098361261c565b91506129db8261299a565b602082019050919050565b600060208201905081810360008301526129ff816129c3565b9050919050565b60008160601b9050919050565b6000612a1e82612a06565b9050919050565b6000612a3082612a13565b9050919050565b612a48612a4382611f13565b612a25565b82525050565b6000819050919050565b612a69612a6482611e7d565b612a4e565b82525050565b6000819050919050565b612a8a612a858261208d565b612a6f565b82525050565b6000612a9c8288612a37565b601482019150612aac8287612a58565b602082019150612abc8286612a37565b601482019150612acc8285612a58565b602082019150612adc8284612a79565b6020820191508190509695505050505050565b7f41636365737320746f6b656e20616c7265616479207573656400000000000000600082015250565b6000612b2560198361261c565b9150612b3082612aef565b602082019050919050565b60006020820190508181036000830152612b5481612b18565b9050919050565b7f496e76616c69642061636365737320746f6b656e207369676e65720000000000600082015250565b6000612b91601b8361261c565b9150612b9c82612b5b565b602082019050919050565b60006020820190508181036000830152612bc081612b84565b9050919050565b600081519050612bd681611e87565b92915050565b600060208284031215612bf257612bf1611e73565b5b6000612c0084828501612bc7565b91505092915050565b6000612c1482611f13565b9050919050565b612c2481612c09565b8114612c2f57600080fd5b50565b600081359050612c4181612c1b565b92915050565b6000612c5282611ef3565b9050919050565b612c6281612c47565b8114612c6d57600080fd5b50565b600081359050612c7f81612c59565b92915050565b600060a08284031215612c9b57612c9a612436565b5b612ca560a061225b565b90506000612cb584828501612c32565b6000830152506020612cc984828501612c32565b6020830152506040612cdd84828501612c70565b6040830152506060612cf184828501611e9e565b6060830152506080612d0584828501611e9e565b60808301525092915050565b60008060c08385031215612d2857612d27611e73565b5b6000612d3685828601612c85565b92505060a083013567ffffffffffffffff811115612d5757612d56611e78565b5b612d63858286016122f8565b9150509250929050565b6000612d7882611fe6565b9050919050565b612d8881612d6d565b82525050565b612d9781612c47565b82525050565b612da681611e7d565b82525050565b60a082016000820151612dc26000850182612d7f565b506020820151612dd56020850182612d7f565b506040820151612de86040850182612d8e565b506060820151612dfb6060850182612d9d565b506080820151612e0e6080850182612d9d565b50505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e4e578082015181840152602081019050612e33565b60008484015250505050565b6000612e6582612e14565b612e6f8185612e1f565b9350612e7f818560208601612e30565b612e88816121ea565b840191505092915050565b600060c082019050612ea86000830185612dac565b81810360a0830152612eba8184612e5a565b90509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f1f60268361261c565b9150612f2a82612ec3565b604082019050919050565b60006020820190508181036000830152612f4e81612f12565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f8b60208361261c565b9150612f9682612f55565b602082019050919050565b60006020820190508181036000830152612fba81612f7e565b9050919050565b600081519050612fd081612097565b92915050565b600060208284031215612fec57612feb611e73565b5b6000612ffa84828501612fc1565b91505092915050565b7f45524331393637557067726164653a206e657720696d706c656d656e7461746960008201527f6f6e206973206e6f742055555053000000000000000000000000000000000000602082015250565b600061305f602e8361261c565b915061306a82613003565b604082019050919050565b6000602082019050818103600083015261308e81613052565b9050919050565b7f45524331393637557067726164653a20756e737570706f727465642070726f7860008201527f6961626c65555549440000000000000000000000000000000000000000000000602082015250565b60006130f160298361261c565b91506130fc82613095565b604082019050919050565b60006020820190508181036000830152613120816130e4565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613183602b8361261c565b915061318e82613127565b604082019050919050565b600060208201905081810360008301526131b281613176565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131ef601f8361261c565b91506131fa826131b9565b602082019050919050565b6000602082019050818103600083015261321e816131e2565b9050919050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b6000613281602d8361261c565b915061328c82613225565b604082019050919050565b600060208201905081810360008301526132b081613274565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006132ed60148361261c565b91506132f8826132b7565b602082019050919050565b6000602082019050818103600083015261331c816132e0565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061335960108361261c565b915061336482613323565b602082019050919050565b600060208201905081810360008301526133888161334c565b9050919050565b6133988161243b565b82525050565b60006080820190506133b36000830187612382565b6133c0602083018661338f565b6133cd6040830185612382565b6133da6060830184612382565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061344860188361261c565b915061345382613412565b602082019050919050565b600060208201905081810360008301526134778161343b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006134b4601f8361261c565b91506134bf8261347e565b602082019050919050565b600060208201905081810360008301526134e3816134a7565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061354660228361261c565b9150613551826134ea565b604082019050919050565b6000602082019050818103600083015261357581613539565b9050919050565b600081905092915050565b600061359282612e14565b61359c818561357c565b93506135ac818560208601612e30565b80840191505092915050565b60006135c48284613587565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000613605601d8361261c565b9150613610826135cf565b602082019050919050565b60006020820190508181036000830152613634816135f8565b9050919050565b600081519050919050565b60006136518261363b565b61365b818561261c565b935061366b818560208601612e30565b613674816121ea565b840191505092915050565b600060208201905081810360008301526136998184613646565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220c66b01c5881f94cf271c29374cb78a956f41b7f42e2dce56e04c26aa0f08065e64736f6c63430008190033
Deployed ByteCode
0x6080604052600436106101445760003560e01c8063570ca735116100b6578063b2bca6271161006f578063b2bca627146103e8578063b3ab15fb14610413578063c75d02041461043c578063cd55558a14610467578063d961ec9514610490578063f2fde38b146104bb5761014b565b8063570ca735146103105780635c975abb1461033b578063715018a6146103665780638456cb591461037d5780638da5cb5b146103945780639fc0907b146103bf5761014b565b80633f4ba83a116101085780633f4ba83a146102215780634093403a14610238578063485cc95514610275578063495ba6351461029e5780634f1ef286146102c957806352d1902d146102e55761014b565b8063015af8ee146101505780630eae4536146101795780632e8fa821146101a2578063320132a6146101cd5780633659cfe6146101f85761014b565b3661014b57005b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611eb3565b6104e4565b005b34801561018557600080fd5b506101a0600480360381019061019b9190611f63565b61053f565b005b3480156101ae57600080fd5b506101b761058c565b6040516101c49190611f9f565b60405180910390f35b3480156101d957600080fd5b506101e2610593565b6040516101ef9190612019565b60405180910390f35b34801561020457600080fd5b5061021f600480360381019061021a9190612060565b6105ba565b005b34801561022d57600080fd5b50610236610742565b005b34801561024457600080fd5b5061025f600480360381019061025a91906120c3565b610754565b60405161026c919061210b565b60405180910390f35b34801561028157600080fd5b5061029c60048036038101906102979190612164565b610775565b005b3480156102aa57600080fd5b506102b3610908565b6040516102c091906121c5565b60405180910390f35b6102e360048036038101906102de9190612326565b61092f565b005b3480156102f157600080fd5b506102fa610a6b565b6040516103079190612391565b60405180910390f35b34801561031c57600080fd5b50610325610b24565b60405161033291906123bb565b60405180910390f35b34801561034757600080fd5b50610350610b4b565b60405161035d919061210b565b60405180910390f35b34801561037257600080fd5b5061037b610b62565b005b34801561038957600080fd5b50610392610b76565b005b3480156103a057600080fd5b506103a9610b88565b6040516103b691906123bb565b60405180910390f35b3480156103cb57600080fd5b506103e660048036038101906103e191906124d8565b610bb2565b005b3480156103f457600080fd5b506103fd61113e565b60405161040a9190611f9f565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190612060565b611145565b005b34801561044857600080fd5b50610451611192565b60405161045e919061256d565b60405180910390f35b34801561047357600080fd5b5061048e600480360381019061048991906125c6565b6111b9565b005b34801561049c57600080fd5b506104a5611206565b6040516104b29190611f9f565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd9190612060565b61120d565b005b6104ec611290565b816101308190555080610131819055507ff3e4c1a93650c97dbf12747464077358c6b0f8f4b91443502bcb0cffb106c19e61013054610131546040516105339291906125f3565b60405180910390a15050565b610547611290565b8061012e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6101315481565b61012d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000a096168909cb3db6e5bb9f035d1173af962df2bd73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1603610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f9061269f565b60405180910390fd5b7f000000000000000000000000a096168909cb3db6e5bb9f035d1173af962df2bd73ffffffffffffffffffffffffffffffffffffffff1661068761130e565b73ffffffffffffffffffffffffffffffffffffffff16146106dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d490612731565b60405180910390fd5b6106e681611365565b61073f81600067ffffffffffffffff811115610705576107046121fb565b5b6040519080825280601f01601f1916602001820160405280156107375781602001600182028036833780820191505090505b506000611370565b50565b61074a611290565b6107526114de565b565b6101336020528060005260406000206000915054906101000a900460ff1681565b60008060019054906101000a900460ff161590508080156107a65750600160008054906101000a900460ff1660ff16105b806107d357506107b530611541565b1580156107d25750600160008054906101000a900460ff1660ff16145b5b610812576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610809906127c3565b60405180910390fd5b60016000806101000a81548160ff021916908360ff160217905550801561084f576001600060016101000a81548160ff0219169083151502179055505b610857611564565b61085f6115bd565b6108688361120d565b8161012d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080156109035760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516108fa919061281e565b60405180910390a15b505050565b61012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000a096168909cb3db6e5bb9f035d1173af962df2bd73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16036109bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b49061269f565b60405180910390fd5b7f000000000000000000000000a096168909cb3db6e5bb9f035d1173af962df2bd73ffffffffffffffffffffffffffffffffffffffff166109fc61130e565b73ffffffffffffffffffffffffffffffffffffffff1614610a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4990612731565b60405180910390fd5b610a5b82611365565b610a6782826001611370565b5050565b60007f000000000000000000000000a096168909cb3db6e5bb9f035d1173af962df2bd73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614610afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af2906128ab565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b61013260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060c960009054906101000a900460ff16905090565b610b6a611290565b610b746000611616565b565b610b7e611290565b610b866116dc565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61013154471015610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90612917565b60405180910390fd5b6101305461012f5442610c0b9190612966565b1015610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c43906129e6565b60405180910390fd5b818160003046610c5a61173f565b6101315486604051602001610c73959493929190612a90565b604051602081830303815290604052805190602001209050610133600082815260200190815260200160002060009054906101000a900460ff1615610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490612b3b565b60405180910390fd5b6000610d1a836040015184600001518560200151610d0a86611747565b61177d909392919063ffffffff16565b905061013260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490612ba7565b60405180910390fd5b6001610133600084815260200190815260200160002060006101000a81548160ff021916908315150217905550610de26117a8565b600061012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610e4091906123bb565b602060405180830381865afa158015610e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e819190612bdc565b90506000808a8a810190610e959190612d11565b91509150600061013460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16638218b58f6101315485856040518463ffffffff1660e01b8152600401610efd929190612e93565b60206040518083038185885af1158015610f1b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610f409190612bdc565b9050600061012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610fa091906123bb565b602060405180830381865afa158015610fbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe19190612bdc565b905060008582610ff19190612966565b90508083146110395782816040517f626ade300000000000000000000000000000000000000000000000000000000081526004016110309291906125f3565b60405180910390fd5b61012e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342966c68826040518263ffffffff1660e01b81526004016110959190611f9f565b600060405180830381600087803b1580156110af57600080fd5b505af11580156110c3573d6000803e3d6000fd5b505050506110cf61173f565b73ffffffffffffffffffffffffffffffffffffffff167f5193fe3b7a9564dca5970c8b10def87cd842eddeffe4003191e5c6ddb141462642836040516111169291906125f3565b60405180910390a250505050505061112c6117f7565b505050504261012f8190555050505050565b61012f5481565b61114d611290565b8061013260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61013460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111c1611290565b8061013460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6101305481565b611215611290565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127b90612f35565b60405180910390fd5b61128d81611616565b50565b61129861173f565b73ffffffffffffffffffffffffffffffffffffffff166112b6610b88565b73ffffffffffffffffffffffffffffffffffffffff161461130c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130390612fa1565b60405180910390fd5b565b600061133c7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b611801565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61136d611290565b50565b61139c7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914360001b61180b565b60000160009054906101000a900460ff16156113c0576113bb83611815565b6114d9565b8273ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa92505050801561142857506040513d601f19601f820116820180604052508101906114259190612fd6565b60015b611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90613075565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b81146114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c390613107565b60405180910390fd5b506114d88383836118ce565b5b505050565b6114e66118fa565b600060c960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61152a61173f565b60405161153791906123bb565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff166115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90613199565b60405180910390fd5b6115bb611943565b565b600060019054906101000a900460ff1661160c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160390613199565b60405180910390fd5b6116146119a4565b565b6000609760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081609760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116e4611a10565b600160c960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861172861173f565b60405161173591906123bb565b60405180910390a1565b600033905090565b60007f19457468657265756d205369676e6564204d6573736167653a0a33320000000060005281601c52603c6000209050919050565b600080600061178e87878787611a5a565b9150915061179b81611b3c565b8192505050949350505050565b600260fb54036117ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e490613205565b60405180910390fd5b600260fb81905550565b600160fb81905550565b6000819050919050565b6000819050919050565b61181e81611541565b61185d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185490613297565b60405180910390fd5b8061188a7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b611801565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118d783611ca2565b6000825111806118e45750805b156118f5576118f38383611cf1565b505b505050565b611902610b4b565b611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613303565b60405180910390fd5b565b600060019054906101000a900460ff16611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990613199565b60405180910390fd5b6119a261199d61173f565b611616565b565b600060019054906101000a900460ff166119f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ea90613199565b60405180910390fd5b600060c960006101000a81548160ff021916908315150217905550565b611a18610b4b565b15611a58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4f9061336f565b60405180910390fd5b565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611a95576000600391509150611b33565b600060018787878760405160008152602001604052604051611aba949392919061339e565b6020604051602081039080840390855afa158015611adc573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b2a57600060019250925050611b33565b80600092509250505b94509492505050565b60006004811115611b5057611b4f6133e3565b5b816004811115611b6357611b626133e3565b5b0315611c9f5760016004811115611b7d57611b7c6133e3565b5b816004811115611b9057611b8f6133e3565b5b03611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc79061345e565b60405180910390fd5b60026004811115611be457611be36133e3565b5b816004811115611bf757611bf66133e3565b5b03611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906134ca565b60405180910390fd5b60036004811115611c4b57611c4a6133e3565b5b816004811115611c5e57611c5d6133e3565b5b03611c9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c959061355c565b60405180910390fd5b5b50565b611cab81611815565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b6060611d1683836040518060600160405280602781526020016136a260279139611d1e565b905092915050565b60606000808573ffffffffffffffffffffffffffffffffffffffff1685604051611d4891906135b8565b600060405180830381855af49150503d8060008114611d83576040519150601f19603f3d011682016040523d82523d6000602084013e611d88565b606091505b5091509150611d9986838387611da4565b925050509392505050565b60608315611e06576000835103611dfe57611dbe85611541565b611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df49061361b565b60405180910390fd5b5b829050611e11565b611e108383611e19565b5b949350505050565b600082511115611e2c5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e60919061367f565b60405180910390fd5b6000604051905090565b600080fd5b600080fd5b6000819050919050565b611e9081611e7d565b8114611e9b57600080fd5b50565b600081359050611ead81611e87565b92915050565b60008060408385031215611eca57611ec9611e73565b5b6000611ed885828601611e9e565b9250506020611ee985828601611e9e565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611f1e82611ef3565b9050919050565b6000611f3082611f13565b9050919050565b611f4081611f25565b8114611f4b57600080fd5b50565b600081359050611f5d81611f37565b92915050565b600060208284031215611f7957611f78611e73565b5b6000611f8784828501611f4e565b91505092915050565b611f9981611e7d565b82525050565b6000602082019050611fb46000830184611f90565b92915050565b6000819050919050565b6000611fdf611fda611fd584611ef3565b611fba565b611ef3565b9050919050565b6000611ff182611fc4565b9050919050565b600061200382611fe6565b9050919050565b61201381611ff8565b82525050565b600060208201905061202e600083018461200a565b92915050565b61203d81611f13565b811461204857600080fd5b50565b60008135905061205a81612034565b92915050565b60006020828403121561207657612075611e73565b5b60006120848482850161204b565b91505092915050565b6000819050919050565b6120a08161208d565b81146120ab57600080fd5b50565b6000813590506120bd81612097565b92915050565b6000602082840312156120d9576120d8611e73565b5b60006120e7848285016120ae565b91505092915050565b60008115159050919050565b612105816120f0565b82525050565b600060208201905061212060008301846120fc565b92915050565b600061213182611f13565b9050919050565b61214181612126565b811461214c57600080fd5b50565b60008135905061215e81612138565b92915050565b6000806040838503121561217b5761217a611e73565b5b60006121898582860161204b565b925050602061219a8582860161214f565b9150509250929050565b60006121af82611fe6565b9050919050565b6121bf816121a4565b82525050565b60006020820190506121da60008301846121b6565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612233826121ea565b810181811067ffffffffffffffff82111715612252576122516121fb565b5b80604052505050565b6000612265611e69565b9050612271828261222a565b919050565b600067ffffffffffffffff821115612291576122906121fb565b5b61229a826121ea565b9050602081019050919050565b82818337600083830152505050565b60006122c96122c484612276565b61225b565b9050828152602081018484840111156122e5576122e46121e5565b5b6122f08482856122a7565b509392505050565b600082601f83011261230d5761230c6121e0565b5b813561231d8482602086016122b6565b91505092915050565b6000806040838503121561233d5761233c611e73565b5b600061234b8582860161204b565b925050602083013567ffffffffffffffff81111561236c5761236b611e78565b5b612378858286016122f8565b9150509250929050565b61238b8161208d565b82525050565b60006020820190506123a66000830184612382565b92915050565b6123b581611f13565b82525050565b60006020820190506123d060008301846123ac565b92915050565b600080fd5b600080fd5b60008083601f8401126123f6576123f56121e0565b5b8235905067ffffffffffffffff811115612413576124126123d6565b5b60208301915083600182028301111561242f5761242e6123db565b5b9250929050565b600080fd5b600060ff82169050919050565b6124518161243b565b811461245c57600080fd5b50565b60008135905061246e81612448565b92915050565b60006060828403121561248a57612489612436565b5b612494606061225b565b905060006124a4848285016120ae565b60008301525060206124b8848285016120ae565b60208301525060406124cc8482850161245f565b60408301525092915050565b60008060008060a085870312156124f2576124f1611e73565b5b600085013567ffffffffffffffff8111156125105761250f611e78565b5b61251c878288016123e0565b9450945050602061252f878288016120ae565b925050604061254087828801612474565b91505092959194509250565b600061255782611fe6565b9050919050565b6125678161254c565b82525050565b6000602082019050612582600083018461255e565b92915050565b600061259382611f13565b9050919050565b6125a381612588565b81146125ae57600080fd5b50565b6000813590506125c08161259a565b92915050565b6000602082840312156125dc576125db611e73565b5b60006125ea848285016125b1565b91505092915050565b60006040820190506126086000830185611f90565b6126156020830184611f90565b9392505050565b600082825260208201905092915050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f64656c656761746563616c6c0000000000000000000000000000000000000000602082015250565b6000612689602c8361261c565b91506126948261262d565b604082019050919050565b600060208201905081810360008301526126b88161267c565b9050919050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f6163746976652070726f78790000000000000000000000000000000000000000602082015250565b600061271b602c8361261c565b9150612726826126bf565b604082019050919050565b6000602082019050818103600083015261274a8161270e565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b60006127ad602e8361261c565b91506127b882612751565b604082019050919050565b600060208201905081810360008301526127dc816127a0565b9050919050565b6000819050919050565b60006128086128036127fe846127e3565b611fba565b61243b565b9050919050565b612818816127ed565b82525050565b6000602082019050612833600083018461280f565b92915050565b7f555550535570677261646561626c653a206d757374206e6f742062652063616c60008201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000602082015250565b600061289560388361261c565b91506128a082612839565b604082019050919050565b600060208201905081810360008301526128c481612888565b9050919050565b7f4e6f7420656e6f75676820504c532062616c616e636500000000000000000000600082015250565b600061290160168361261c565b915061290c826128cb565b602082019050919050565b60006020820190508181036000830152612930816128f4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061297182611e7d565b915061297c83611e7d565b925082820390508181111561299457612993612937565b5b92915050565b7f546f6f206f6674656e0000000000000000000000000000000000000000000000600082015250565b60006129d060098361261c565b91506129db8261299a565b602082019050919050565b600060208201905081810360008301526129ff816129c3565b9050919050565b60008160601b9050919050565b6000612a1e82612a06565b9050919050565b6000612a3082612a13565b9050919050565b612a48612a4382611f13565b612a25565b82525050565b6000819050919050565b612a69612a6482611e7d565b612a4e565b82525050565b6000819050919050565b612a8a612a858261208d565b612a6f565b82525050565b6000612a9c8288612a37565b601482019150612aac8287612a58565b602082019150612abc8286612a37565b601482019150612acc8285612a58565b602082019150612adc8284612a79565b6020820191508190509695505050505050565b7f41636365737320746f6b656e20616c7265616479207573656400000000000000600082015250565b6000612b2560198361261c565b9150612b3082612aef565b602082019050919050565b60006020820190508181036000830152612b5481612b18565b9050919050565b7f496e76616c69642061636365737320746f6b656e207369676e65720000000000600082015250565b6000612b91601b8361261c565b9150612b9c82612b5b565b602082019050919050565b60006020820190508181036000830152612bc081612b84565b9050919050565b600081519050612bd681611e87565b92915050565b600060208284031215612bf257612bf1611e73565b5b6000612c0084828501612bc7565b91505092915050565b6000612c1482611f13565b9050919050565b612c2481612c09565b8114612c2f57600080fd5b50565b600081359050612c4181612c1b565b92915050565b6000612c5282611ef3565b9050919050565b612c6281612c47565b8114612c6d57600080fd5b50565b600081359050612c7f81612c59565b92915050565b600060a08284031215612c9b57612c9a612436565b5b612ca560a061225b565b90506000612cb584828501612c32565b6000830152506020612cc984828501612c32565b6020830152506040612cdd84828501612c70565b6040830152506060612cf184828501611e9e565b6060830152506080612d0584828501611e9e565b60808301525092915050565b60008060c08385031215612d2857612d27611e73565b5b6000612d3685828601612c85565b92505060a083013567ffffffffffffffff811115612d5757612d56611e78565b5b612d63858286016122f8565b9150509250929050565b6000612d7882611fe6565b9050919050565b612d8881612d6d565b82525050565b612d9781612c47565b82525050565b612da681611e7d565b82525050565b60a082016000820151612dc26000850182612d7f565b506020820151612dd56020850182612d7f565b506040820151612de86040850182612d8e565b506060820151612dfb6060850182612d9d565b506080820151612e0e6080850182612d9d565b50505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e4e578082015181840152602081019050612e33565b60008484015250505050565b6000612e6582612e14565b612e6f8185612e1f565b9350612e7f818560208601612e30565b612e88816121ea565b840191505092915050565b600060c082019050612ea86000830185612dac565b81810360a0830152612eba8184612e5a565b90509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f1f60268361261c565b9150612f2a82612ec3565b604082019050919050565b60006020820190508181036000830152612f4e81612f12565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f8b60208361261c565b9150612f9682612f55565b602082019050919050565b60006020820190508181036000830152612fba81612f7e565b9050919050565b600081519050612fd081612097565b92915050565b600060208284031215612fec57612feb611e73565b5b6000612ffa84828501612fc1565b91505092915050565b7f45524331393637557067726164653a206e657720696d706c656d656e7461746960008201527f6f6e206973206e6f742055555053000000000000000000000000000000000000602082015250565b600061305f602e8361261c565b915061306a82613003565b604082019050919050565b6000602082019050818103600083015261308e81613052565b9050919050565b7f45524331393637557067726164653a20756e737570706f727465642070726f7860008201527f6961626c65555549440000000000000000000000000000000000000000000000602082015250565b60006130f160298361261c565b91506130fc82613095565b604082019050919050565b60006020820190508181036000830152613120816130e4565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613183602b8361261c565b915061318e82613127565b604082019050919050565b600060208201905081810360008301526131b281613176565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131ef601f8361261c565b91506131fa826131b9565b602082019050919050565b6000602082019050818103600083015261321e816131e2565b9050919050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b6000613281602d8361261c565b915061328c82613225565b604082019050919050565b600060208201905081810360008301526132b081613274565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006132ed60148361261c565b91506132f8826132b7565b602082019050919050565b6000602082019050818103600083015261331c816132e0565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061335960108361261c565b915061336482613323565b602082019050919050565b600060208201905081810360008301526133888161334c565b9050919050565b6133988161243b565b82525050565b60006080820190506133b36000830187612382565b6133c0602083018661338f565b6133cd6040830185612382565b6133da6060830184612382565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b600061344860188361261c565b915061345382613412565b602082019050919050565b600060208201905081810360008301526134778161343b565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b60006134b4601f8361261c565b91506134bf8261347e565b602082019050919050565b600060208201905081810360008301526134e3816134a7565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b600061354660228361261c565b9150613551826134ea565b604082019050919050565b6000602082019050818103600083015261357581613539565b9050919050565b600081905092915050565b600061359282612e14565b61359c818561357c565b93506135ac818560208601612e30565b80840191505092915050565b60006135c48284613587565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000613605601d8361261c565b9150613610826135cf565b602082019050919050565b60006020820190508181036000830152613634816135f8565b9050919050565b600081519050919050565b60006136518261363b565b61365b818561261c565b935061366b818560208601612e30565b613674816121ea565b840191505092915050565b600060208201905081810360008301526136998184613646565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220c66b01c5881f94cf271c29374cb78a956f41b7f42e2dce56e04c26aa0f08065e64736f6c63430008190033