Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
ChsbToBorgMigrator
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: agpl-3.0 pragma solidity 0.8.16; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; /// @title ChsbToBorgMigrator /// @notice This contract implements the migration from the CHSB to the BORG token. /// @author SwissBorg contract ChsbToBorgMigrator is OwnableUpgradeable, PausableUpgradeable, UUPSUpgradeable { using SafeERC20Upgradeable for IERC20Upgradeable; /// @notice The initial supply of $CHSB that will be migrated to $BORG. uint256 internal constant INITIAL_CHSB_SUPPLY = 1_000_000_000 * 10**8; /// @notice $CHSB has 8 decimals while $BORG has 18 decimals. We need to add 10 ** 10 to the amount of $BORG sent. uint256 internal constant DECIMALS_SCALE = 10**10; /// @notice The contract address of $CHSB. IERC20Upgradeable public CHSB; /// @notice The contract address of $BORG. IERC20Upgradeable public BORG; /// @notice The total number of $CHSB migrated to $BORG. uint256 public totalChsbMigrated; /// @notice The manager can pause the contract. address public manager; /// @notice The event is emitted when a migration is completed. /// @param sender The caller of the migration. /// @param amount The amount migrated. event ChsbMigrated(address indexed sender, uint256 indexed amount); /// @notice The event is emitted when a new manager is set. /// @param newManager The address of the new manager. event SetManager(address indexed newManager); /// @notice Requires that the function is called by the manager. modifier onlyManager { require(msg.sender == manager, "ONLY_MANAGER"); _; } /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } /// Creates a ChsbToBorgMigrator. /// @param _chsb The contract address of the $CHSB token. /// @param _borg The contract address of the $BORG token. /// @param owner_ The address of the owner of the contract. /// @param _manager The address of the owner of the contract. function initialize(address _chsb, address _borg, address owner_, address _manager) external initializer { require(_chsb != address(0), "ADDRESS_ZERO"); require(_borg != address(0), "ADDRESS_ZERO"); require(owner_ != address(0), "ADDRESS_ZERO"); require(_manager != address(0), "ADDRESS_ZERO"); __Ownable_init(); __Pausable_init(); __UUPSUpgradeable_init(); CHSB = IERC20Upgradeable(_chsb); BORG = IERC20Upgradeable(_borg); manager = _manager; // Transfer the ownership at start. _transferOwnership(owner_); // Pause the contract at start. _pause(); } /// @notice Migrates the $CHSB to $BORG. /// @param _amount The amount of $CHSB to migrate. function migrate(uint256 _amount) external whenNotPaused { require(IERC20Upgradeable(CHSB).totalSupply() == INITIAL_CHSB_SUPPLY, "CHSB_SUPPLY_WRONG"); require(_amount > 0, "AMOUNT_ZERO"); // Migrate totalChsbMigrated = totalChsbMigrated + _amount; CHSB.safeTransferFrom(msg.sender, address(this), _amount); BORG.safeTransfer(msg.sender, _amount * DECIMALS_SCALE); emit ChsbMigrated(msg.sender, _amount); } /// @notice Pauses the migration. function pause() external onlyManager { _pause(); } /// @notice Returns the contract to a normal state. function unpause() external onlyManager { _unpause(); } /// @notice Sets a new manager. /// @param _manager The address of the new manager. function setManager(address _manager) external onlyOwner { require(_manager != address(0), "ADDRESS_ZERO"); manager = _manager; emit SetManager(_manager); } /// @notice Returns the current implementation address. /// @return The address of the implementation. function getImplementation() external view returns (address) { return _getImplementation(); } /// @inheritdoc UUPSUpgradeable function _authorizeUpgrade(address newImplementation) internal override onlyOwner {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../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; }
// 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); }
// 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); }
// 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); }
// 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 "../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 { function __ERC1967Upgrade_init() internal onlyInitializing { } function __ERC1967Upgrade_init_unchained() internal onlyInitializing { } // 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; /** * @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; }
// 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; } }
// 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.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 { function __UUPSUpgradeable_init() internal onlyInitializing { } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /// @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"); _; } /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20PermitUpgradeable { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; import "../extensions/IERC20PermitUpgradeable.sol"; import "../../../utils/AddressUpgradeable.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20Upgradeable { using AddressUpgradeable for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20Upgradeable token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20Upgradeable token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20Upgradeable token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to * 0 before setting it to a non-zero value. */ function forceApprove(IERC20Upgradeable token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20PermitUpgradeable token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20Upgradeable token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && AddressUpgradeable.isContract(address(token)); } }
// 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); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../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; } /** * @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; }
// 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 } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ChsbMigrated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newManager","type":"address"}],"name":"SetManager","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"BORG","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CHSB","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_chsb","type":"address"},{"internalType":"address","name":"_borg","type":"address"},{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"_manager","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalChsbMigrated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a06040523073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152503480156200004457600080fd5b50620000556200005b60201b60201c565b62000205565b600060019054906101000a900460ff1615620000ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000a590620001a8565b60405180910390fd5b60ff801660008054906101000a900460ff1660ff16146200011f5760ff6000806101000a81548160ff021916908360ff1602179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860ff604051620001169190620001e8565b60405180910390a15b565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320696e69746960008201527f616c697a696e6700000000000000000000000000000000000000000000000000602082015250565b60006200019060278362000121565b91506200019d8262000132565b604082019050919050565b60006020820190508181036000830152620001c38162000181565b9050919050565b600060ff82169050919050565b620001e281620001ca565b82525050565b6000602082019050620001ff6000830184620001d7565b92915050565b608051612e426200023d600039600081816103b10152818161043f01528181610825015281816108b301526109630152612e426000f3fe6080604052600436106100fe5760003560e01c80635c975abb11610095578063aaf10f4211610064578063aaf10f42146102b8578063d0ebdbe7146102e3578063f2fde38b1461030c578063f8c8765e14610335578063fb5ee8dd1461035e576100fe565b80635c975abb14610234578063715018a61461025f5780638456cb59146102765780638da5cb5b1461028d576100fe565b8063481c6a75116100d1578063481c6a75146101975780634f1ef286146101c257806352d1902d146101de578063583e97ef14610209576100fe565b80631e697b33146101035780633659cfe61461012e5780633f4ba83a14610157578063454b06081461016e575b600080fd5b34801561010f57600080fd5b50610118610389565b6040516101259190611d08565b60405180910390f35b34801561013a57600080fd5b5061015560048036038101906101509190611d75565b6103af565b005b34801561016357600080fd5b5061016c610537565b005b34801561017a57600080fd5b5061019560048036038101906101909190611dd8565b6105d1565b005b3480156101a357600080fd5b506101ac6107fd565b6040516101b99190611e14565b60405180910390f35b6101dc60048036038101906101d79190611f75565b610823565b005b3480156101ea57600080fd5b506101f361095f565b6040516102009190611fea565b60405180910390f35b34801561021557600080fd5b5061021e610a18565b60405161022b9190612014565b60405180910390f35b34801561024057600080fd5b50610249610a1e565b604051610256919061204a565b60405180910390f35b34801561026b57600080fd5b50610274610a35565b005b34801561028257600080fd5b5061028b610a49565b005b34801561029957600080fd5b506102a2610ae3565b6040516102af9190611e14565b60405180910390f35b3480156102c457600080fd5b506102cd610b0d565b6040516102da9190611e14565b60405180910390f35b3480156102ef57600080fd5b5061030a60048036038101906103059190611d75565b610b1c565b005b34801561031857600080fd5b50610333600480360381019061032e9190611d75565b610c1a565b005b34801561034157600080fd5b5061035c60048036038101906103579190612065565b610c9d565b005b34801561036a57600080fd5b5061037361107f565b6040516103809190611d08565b60405180910390f35b60fb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff160361043d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104349061214f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661047c6110a5565b73ffffffffffffffffffffffffffffffffffffffff16146104d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c9906121e1565b60405180910390fd5b6104db816110fc565b61053481600067ffffffffffffffff8111156104fa576104f9611e4a565b5b6040519080825280601f01601f19166020018201604052801561052c5781602001600182028036833780820191505090505b506000611107565b50565b60fe60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105be9061224d565b60405180910390fd5b6105cf611275565b565b6105d96112d8565b67016345785d8a000060fb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561064f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106739190612282565b146106b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106aa906122fb565b60405180910390fd5b600081116106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90612367565b60405180910390fd5b8060fd5461070491906123b6565b60fd8190555061075933308360fb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611322909392919063ffffffff16565b6107b6336402540be4008361076e91906123ea565b60fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113ab9092919063ffffffff16565b803373ffffffffffffffffffffffffffffffffffffffff167f68403d1841a4687d56a5f8e86ce65d4e196a307d32a48bd51bfac22cbb370fdf60405160405180910390a350565b60fe60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16036108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a89061214f565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108f06110a5565b73ffffffffffffffffffffffffffffffffffffffff1614610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d906121e1565b60405180910390fd5b61094f826110fc565b61095b82826001611107565b5050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16146109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e6906124b6565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b60fd5481565b6000606560009054906101000a900460ff16905090565b610a3d611431565b610a4760006114af565b565b60fe60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad09061224d565b60405180910390fd5b610ae1611575565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610b176110a5565b905090565b610b24611431565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90612522565b60405180910390fd5b8060fe60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f54a6385aa0292b04e1ef8513253c17d1863f7cdfc87029d77fd55cc4c2e717e260405160405180910390a250565b610c22611431565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c88906125b4565b60405180910390fd5b610c9a816114af565b50565b60008060019054906101000a900460ff16159050808015610cce5750600160008054906101000a900460ff1660ff16105b80610cfb5750610cdd306115d8565b158015610cfa5750600160008054906101000a900460ff1660ff16145b5b610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190612646565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610d77576001600060016101000a81548160ff0219169083151502179055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90612522565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90612522565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90612522565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90612522565b60405180910390fd5b610f3b6115fb565b610f43611654565b610f4b6116ad565b8460fb60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360fc60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160fe60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611017836114af565b61101f611575565b80156110785760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161106f91906126ae565b60405180910390a15b5050505050565b60fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006110d37f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6116fe565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611104611431565b50565b6111337f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914360001b611708565b60000160009054906101000a900460ff16156111575761115283611712565b611270565b8273ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156111bf57506040513d601f19601f820116820180604052508101906111bc91906126f5565b60015b6111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590612794565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8114611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90612826565b60405180910390fd5b5061126f8383836117cb565b5b505050565b61127d6117f7565b6000606560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6112c1611840565b6040516112ce9190611e14565b60405180910390a1565b6112e0610a1e565b15611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790612892565b60405180910390fd5b565b6113a5846323b872dd60e01b858585604051602401611343939291906128b2565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611848565b50505050565b61142c8363a9059cbb60e01b84846040516024016113ca9291906128e9565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611848565b505050565b611439611840565b73ffffffffffffffffffffffffffffffffffffffff16611457610ae3565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a49061295e565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61157d6112d8565b6001606560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115c1611840565b6040516115ce9190611e14565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff1661164a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611641906129f0565b60405180910390fd5b611652611910565b565b600060019054906101000a900460ff166116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a906129f0565b60405180910390fd5b6116ab611971565b565b600060019054906101000a900460ff166116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f3906129f0565b60405180910390fd5b565b6000819050919050565b6000819050919050565b61171b816115d8565b61175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190612a82565b60405180910390fd5b806117877f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6116fe565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117d4836119dd565b6000825111806117e15750805b156117f2576117f08383611a2c565b505b505050565b6117ff610a1e565b61183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590612aee565b60405180910390fd5b565b600033905090565b60006118aa826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611a599092919063ffffffff16565b90506000815114806118cc5750808060200190518101906118cb9190612b3a565b5b61190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290612bd9565b60405180910390fd5b505050565b600060019054906101000a900460ff1661195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906129f0565b60405180910390fd5b61196f61196a611840565b6114af565b565b600060019054906101000a900460ff166119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906129f0565b60405180910390fd5b6000606560006101000a81548160ff021916908315150217905550565b6119e681611712565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b6060611a518383604051806060016040528060278152602001612de660279139611a71565b905092915050565b6060611a688484600085611af7565b90509392505050565b60606000808573ffffffffffffffffffffffffffffffffffffffff1685604051611a9b9190612c6a565b600060405180830381855af49150503d8060008114611ad6576040519150601f19603f3d011682016040523d82523d6000602084013e611adb565b606091505b5091509150611aec86838387611bc4565b925050509392505050565b606082471015611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390612cf3565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611b659190612c6a565b60006040518083038185875af1925050503d8060008114611ba2576040519150601f19603f3d011682016040523d82523d6000602084013e611ba7565b606091505b5091509150611bb887838387611bc4565b92505050949350505050565b60608315611c26576000835103611c1e57611bde856115d8565b611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1490612d5f565b60405180910390fd5b5b829050611c31565b611c308383611c39565b5b949350505050565b600082511115611c4c5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809190612dc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000611cce611cc9611cc484611c89565b611ca9565b611c89565b9050919050565b6000611ce082611cb3565b9050919050565b6000611cf282611cd5565b9050919050565b611d0281611ce7565b82525050565b6000602082019050611d1d6000830184611cf9565b92915050565b6000604051905090565b600080fd5b600080fd5b6000611d4282611c89565b9050919050565b611d5281611d37565b8114611d5d57600080fd5b50565b600081359050611d6f81611d49565b92915050565b600060208284031215611d8b57611d8a611d2d565b5b6000611d9984828501611d60565b91505092915050565b6000819050919050565b611db581611da2565b8114611dc057600080fd5b50565b600081359050611dd281611dac565b92915050565b600060208284031215611dee57611ded611d2d565b5b6000611dfc84828501611dc3565b91505092915050565b611e0e81611d37565b82525050565b6000602082019050611e296000830184611e05565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e8282611e39565b810181811067ffffffffffffffff82111715611ea157611ea0611e4a565b5b80604052505050565b6000611eb4611d23565b9050611ec08282611e79565b919050565b600067ffffffffffffffff821115611ee057611edf611e4a565b5b611ee982611e39565b9050602081019050919050565b82818337600083830152505050565b6000611f18611f1384611ec5565b611eaa565b905082815260208101848484011115611f3457611f33611e34565b5b611f3f848285611ef6565b509392505050565b600082601f830112611f5c57611f5b611e2f565b5b8135611f6c848260208601611f05565b91505092915050565b60008060408385031215611f8c57611f8b611d2d565b5b6000611f9a85828601611d60565b925050602083013567ffffffffffffffff811115611fbb57611fba611d32565b5b611fc785828601611f47565b9150509250929050565b6000819050919050565b611fe481611fd1565b82525050565b6000602082019050611fff6000830184611fdb565b92915050565b61200e81611da2565b82525050565b60006020820190506120296000830184612005565b92915050565b60008115159050919050565b6120448161202f565b82525050565b600060208201905061205f600083018461203b565b92915050565b6000806000806080858703121561207f5761207e611d2d565b5b600061208d87828801611d60565b945050602061209e87828801611d60565b93505060406120af87828801611d60565b92505060606120c087828801611d60565b91505092959194509250565b600082825260208201905092915050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f64656c656761746563616c6c0000000000000000000000000000000000000000602082015250565b6000612139602c836120cc565b9150612144826120dd565b604082019050919050565b600060208201905081810360008301526121688161212c565b9050919050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f6163746976652070726f78790000000000000000000000000000000000000000602082015250565b60006121cb602c836120cc565b91506121d68261216f565b604082019050919050565b600060208201905081810360008301526121fa816121be565b9050919050565b7f4f4e4c595f4d414e414745520000000000000000000000000000000000000000600082015250565b6000612237600c836120cc565b915061224282612201565b602082019050919050565b600060208201905081810360008301526122668161222a565b9050919050565b60008151905061227c81611dac565b92915050565b60006020828403121561229857612297611d2d565b5b60006122a68482850161226d565b91505092915050565b7f434853425f535550504c595f57524f4e47000000000000000000000000000000600082015250565b60006122e56011836120cc565b91506122f0826122af565b602082019050919050565b60006020820190508181036000830152612314816122d8565b9050919050565b7f414d4f554e545f5a45524f000000000000000000000000000000000000000000600082015250565b6000612351600b836120cc565b915061235c8261231b565b602082019050919050565b6000602082019050818103600083015261238081612344565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123c182611da2565b91506123cc83611da2565b92508282019050808211156123e4576123e3612387565b5b92915050565b60006123f582611da2565b915061240083611da2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561243957612438612387565b5b828202905092915050565b7f555550535570677261646561626c653a206d757374206e6f742062652063616c60008201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000602082015250565b60006124a06038836120cc565b91506124ab82612444565b604082019050919050565b600060208201905081810360008301526124cf81612493565b9050919050565b7f414444524553535f5a45524f0000000000000000000000000000000000000000600082015250565b600061250c600c836120cc565b9150612517826124d6565b602082019050919050565b6000602082019050818103600083015261253b816124ff565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061259e6026836120cc565b91506125a982612542565b604082019050919050565b600060208201905081810360008301526125cd81612591565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000612630602e836120cc565b915061263b826125d4565b604082019050919050565b6000602082019050818103600083015261265f81612623565b9050919050565b6000819050919050565b600060ff82169050919050565b600061269861269361268e84612666565b611ca9565b612670565b9050919050565b6126a88161267d565b82525050565b60006020820190506126c3600083018461269f565b92915050565b6126d281611fd1565b81146126dd57600080fd5b50565b6000815190506126ef816126c9565b92915050565b60006020828403121561270b5761270a611d2d565b5b6000612719848285016126e0565b91505092915050565b7f45524331393637557067726164653a206e657720696d706c656d656e7461746960008201527f6f6e206973206e6f742055555053000000000000000000000000000000000000602082015250565b600061277e602e836120cc565b915061278982612722565b604082019050919050565b600060208201905081810360008301526127ad81612771565b9050919050565b7f45524331393637557067726164653a20756e737570706f727465642070726f7860008201527f6961626c65555549440000000000000000000000000000000000000000000000602082015250565b60006128106029836120cc565b915061281b826127b4565b604082019050919050565b6000602082019050818103600083015261283f81612803565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061287c6010836120cc565b915061288782612846565b602082019050919050565b600060208201905081810360008301526128ab8161286f565b9050919050565b60006060820190506128c76000830186611e05565b6128d46020830185611e05565b6128e16040830184612005565b949350505050565b60006040820190506128fe6000830185611e05565b61290b6020830184612005565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129486020836120cc565b915061295382612912565b602082019050919050565b600060208201905081810360008301526129778161293b565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b60006129da602b836120cc565b91506129e58261297e565b604082019050919050565b60006020820190508181036000830152612a09816129cd565b9050919050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b6000612a6c602d836120cc565b9150612a7782612a10565b604082019050919050565b60006020820190508181036000830152612a9b81612a5f565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612ad86014836120cc565b9150612ae382612aa2565b602082019050919050565b60006020820190508181036000830152612b0781612acb565b9050919050565b612b178161202f565b8114612b2257600080fd5b50565b600081519050612b3481612b0e565b92915050565b600060208284031215612b5057612b4f611d2d565b5b6000612b5e84828501612b25565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000612bc3602a836120cc565b9150612bce82612b67565b604082019050919050565b60006020820190508181036000830152612bf281612bb6565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015612c2d578082015181840152602081019050612c12565b60008484015250505050565b6000612c4482612bf9565b612c4e8185612c04565b9350612c5e818560208601612c0f565b80840191505092915050565b6000612c768284612c39565b915081905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000612cdd6026836120cc565b9150612ce882612c81565b604082019050919050565b60006020820190508181036000830152612d0c81612cd0565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000612d49601d836120cc565b9150612d5482612d13565b602082019050919050565b60006020820190508181036000830152612d7881612d3c565b9050919050565b600081519050919050565b6000612d9582612d7f565b612d9f81856120cc565b9350612daf818560208601612c0f565b612db881611e39565b840191505092915050565b60006020820190508181036000830152612ddd8184612d8a565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220bb907d4bc06b8ca4992b688366cf91a53bb641b531819db2bfc5e9f37484c58a64736f6c63430008100033
Deployed Bytecode
0x6080604052600436106100fe5760003560e01c80635c975abb11610095578063aaf10f4211610064578063aaf10f42146102b8578063d0ebdbe7146102e3578063f2fde38b1461030c578063f8c8765e14610335578063fb5ee8dd1461035e576100fe565b80635c975abb14610234578063715018a61461025f5780638456cb59146102765780638da5cb5b1461028d576100fe565b8063481c6a75116100d1578063481c6a75146101975780634f1ef286146101c257806352d1902d146101de578063583e97ef14610209576100fe565b80631e697b33146101035780633659cfe61461012e5780633f4ba83a14610157578063454b06081461016e575b600080fd5b34801561010f57600080fd5b50610118610389565b6040516101259190611d08565b60405180910390f35b34801561013a57600080fd5b5061015560048036038101906101509190611d75565b6103af565b005b34801561016357600080fd5b5061016c610537565b005b34801561017a57600080fd5b5061019560048036038101906101909190611dd8565b6105d1565b005b3480156101a357600080fd5b506101ac6107fd565b6040516101b99190611e14565b60405180910390f35b6101dc60048036038101906101d79190611f75565b610823565b005b3480156101ea57600080fd5b506101f361095f565b6040516102009190611fea565b60405180910390f35b34801561021557600080fd5b5061021e610a18565b60405161022b9190612014565b60405180910390f35b34801561024057600080fd5b50610249610a1e565b604051610256919061204a565b60405180910390f35b34801561026b57600080fd5b50610274610a35565b005b34801561028257600080fd5b5061028b610a49565b005b34801561029957600080fd5b506102a2610ae3565b6040516102af9190611e14565b60405180910390f35b3480156102c457600080fd5b506102cd610b0d565b6040516102da9190611e14565b60405180910390f35b3480156102ef57600080fd5b5061030a60048036038101906103059190611d75565b610b1c565b005b34801561031857600080fd5b50610333600480360381019061032e9190611d75565b610c1a565b005b34801561034157600080fd5b5061035c60048036038101906103579190612065565b610c9d565b005b34801561036a57600080fd5b5061037361107f565b6040516103809190611d08565b60405180910390f35b60fb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f00000000000000000000000062931ef690876142114ecf5aa52cf0fbbe5e910b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff160361043d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104349061214f565b60405180910390fd5b7f00000000000000000000000062931ef690876142114ecf5aa52cf0fbbe5e910b73ffffffffffffffffffffffffffffffffffffffff1661047c6110a5565b73ffffffffffffffffffffffffffffffffffffffff16146104d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c9906121e1565b60405180910390fd5b6104db816110fc565b61053481600067ffffffffffffffff8111156104fa576104f9611e4a565b5b6040519080825280601f01601f19166020018201604052801561052c5781602001600182028036833780820191505090505b506000611107565b50565b60fe60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105be9061224d565b60405180910390fd5b6105cf611275565b565b6105d96112d8565b67016345785d8a000060fb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561064f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106739190612282565b146106b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106aa906122fb565b60405180910390fd5b600081116106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90612367565b60405180910390fd5b8060fd5461070491906123b6565b60fd8190555061075933308360fb60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611322909392919063ffffffff16565b6107b6336402540be4008361076e91906123ea565b60fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113ab9092919063ffffffff16565b803373ffffffffffffffffffffffffffffffffffffffff167f68403d1841a4687d56a5f8e86ce65d4e196a307d32a48bd51bfac22cbb370fdf60405160405180910390a350565b60fe60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f00000000000000000000000062931ef690876142114ecf5aa52cf0fbbe5e910b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16036108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a89061214f565b60405180910390fd5b7f00000000000000000000000062931ef690876142114ecf5aa52cf0fbbe5e910b73ffffffffffffffffffffffffffffffffffffffff166108f06110a5565b73ffffffffffffffffffffffffffffffffffffffff1614610946576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093d906121e1565b60405180910390fd5b61094f826110fc565b61095b82826001611107565b5050565b60007f00000000000000000000000062931ef690876142114ecf5aa52cf0fbbe5e910b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16146109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e6906124b6565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b905090565b60fd5481565b6000606560009054906101000a900460ff16905090565b610a3d611431565b610a4760006114af565b565b60fe60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ad9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad09061224d565b60405180910390fd5b610ae1611575565b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610b176110a5565b905090565b610b24611431565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90612522565b60405180910390fd5b8060fe60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f54a6385aa0292b04e1ef8513253c17d1863f7cdfc87029d77fd55cc4c2e717e260405160405180910390a250565b610c22611431565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c88906125b4565b60405180910390fd5b610c9a816114af565b50565b60008060019054906101000a900460ff16159050808015610cce5750600160008054906101000a900460ff1660ff16105b80610cfb5750610cdd306115d8565b158015610cfa5750600160008054906101000a900460ff1660ff16145b5b610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190612646565b60405180910390fd5b60016000806101000a81548160ff021916908360ff1602179055508015610d77576001600060016101000a81548160ff0219169083151502179055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd90612522565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4c90612522565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb90612522565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2a90612522565b60405180910390fd5b610f3b6115fb565b610f43611654565b610f4b6116ad565b8460fb60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360fc60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160fe60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611017836114af565b61101f611575565b80156110785760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498600160405161106f91906126ae565b60405180910390a15b5050505050565b60fc60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006110d37f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6116fe565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611104611431565b50565b6111337f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914360001b611708565b60000160009054906101000a900460ff16156111575761115283611712565b611270565b8273ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156111bf57506040513d601f19601f820116820180604052508101906111bc91906126f5565b60015b6111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590612794565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b8114611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90612826565b60405180910390fd5b5061126f8383836117cb565b5b505050565b61127d6117f7565b6000606560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6112c1611840565b6040516112ce9190611e14565b60405180910390a1565b6112e0610a1e565b15611320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131790612892565b60405180910390fd5b565b6113a5846323b872dd60e01b858585604051602401611343939291906128b2565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611848565b50505050565b61142c8363a9059cbb60e01b84846040516024016113ca9291906128e9565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611848565b505050565b611439611840565b73ffffffffffffffffffffffffffffffffffffffff16611457610ae3565b73ffffffffffffffffffffffffffffffffffffffff16146114ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a49061295e565b60405180910390fd5b565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61157d6112d8565b6001606560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115c1611840565b6040516115ce9190611e14565b60405180910390a1565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600060019054906101000a900460ff1661164a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611641906129f0565b60405180910390fd5b611652611910565b565b600060019054906101000a900460ff166116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a906129f0565b60405180910390fd5b6116ab611971565b565b600060019054906101000a900460ff166116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f3906129f0565b60405180910390fd5b565b6000819050919050565b6000819050919050565b61171b816115d8565b61175a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175190612a82565b60405180910390fd5b806117877f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6116fe565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6117d4836119dd565b6000825111806117e15750805b156117f2576117f08383611a2c565b505b505050565b6117ff610a1e565b61183e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183590612aee565b60405180910390fd5b565b600033905090565b60006118aa826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16611a599092919063ffffffff16565b90506000815114806118cc5750808060200190518101906118cb9190612b3a565b5b61190b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190290612bd9565b60405180910390fd5b505050565b600060019054906101000a900460ff1661195f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611956906129f0565b60405180910390fd5b61196f61196a611840565b6114af565b565b600060019054906101000a900460ff166119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b7906129f0565b60405180910390fd5b6000606560006101000a81548160ff021916908315150217905550565b6119e681611712565b8073ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a250565b6060611a518383604051806060016040528060278152602001612de660279139611a71565b905092915050565b6060611a688484600085611af7565b90509392505050565b60606000808573ffffffffffffffffffffffffffffffffffffffff1685604051611a9b9190612c6a565b600060405180830381855af49150503d8060008114611ad6576040519150601f19603f3d011682016040523d82523d6000602084013e611adb565b606091505b5091509150611aec86838387611bc4565b925050509392505050565b606082471015611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390612cf3565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff168587604051611b659190612c6a565b60006040518083038185875af1925050503d8060008114611ba2576040519150601f19603f3d011682016040523d82523d6000602084013e611ba7565b606091505b5091509150611bb887838387611bc4565b92505050949350505050565b60608315611c26576000835103611c1e57611bde856115d8565b611c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1490612d5f565b60405180910390fd5b5b829050611c31565b611c308383611c39565b5b949350505050565b600082511115611c4c5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809190612dc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000611cce611cc9611cc484611c89565b611ca9565b611c89565b9050919050565b6000611ce082611cb3565b9050919050565b6000611cf282611cd5565b9050919050565b611d0281611ce7565b82525050565b6000602082019050611d1d6000830184611cf9565b92915050565b6000604051905090565b600080fd5b600080fd5b6000611d4282611c89565b9050919050565b611d5281611d37565b8114611d5d57600080fd5b50565b600081359050611d6f81611d49565b92915050565b600060208284031215611d8b57611d8a611d2d565b5b6000611d9984828501611d60565b91505092915050565b6000819050919050565b611db581611da2565b8114611dc057600080fd5b50565b600081359050611dd281611dac565b92915050565b600060208284031215611dee57611ded611d2d565b5b6000611dfc84828501611dc3565b91505092915050565b611e0e81611d37565b82525050565b6000602082019050611e296000830184611e05565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e8282611e39565b810181811067ffffffffffffffff82111715611ea157611ea0611e4a565b5b80604052505050565b6000611eb4611d23565b9050611ec08282611e79565b919050565b600067ffffffffffffffff821115611ee057611edf611e4a565b5b611ee982611e39565b9050602081019050919050565b82818337600083830152505050565b6000611f18611f1384611ec5565b611eaa565b905082815260208101848484011115611f3457611f33611e34565b5b611f3f848285611ef6565b509392505050565b600082601f830112611f5c57611f5b611e2f565b5b8135611f6c848260208601611f05565b91505092915050565b60008060408385031215611f8c57611f8b611d2d565b5b6000611f9a85828601611d60565b925050602083013567ffffffffffffffff811115611fbb57611fba611d32565b5b611fc785828601611f47565b9150509250929050565b6000819050919050565b611fe481611fd1565b82525050565b6000602082019050611fff6000830184611fdb565b92915050565b61200e81611da2565b82525050565b60006020820190506120296000830184612005565b92915050565b60008115159050919050565b6120448161202f565b82525050565b600060208201905061205f600083018461203b565b92915050565b6000806000806080858703121561207f5761207e611d2d565b5b600061208d87828801611d60565b945050602061209e87828801611d60565b93505060406120af87828801611d60565b92505060606120c087828801611d60565b91505092959194509250565b600082825260208201905092915050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f64656c656761746563616c6c0000000000000000000000000000000000000000602082015250565b6000612139602c836120cc565b9150612144826120dd565b604082019050919050565b600060208201905081810360008301526121688161212c565b9050919050565b7f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060008201527f6163746976652070726f78790000000000000000000000000000000000000000602082015250565b60006121cb602c836120cc565b91506121d68261216f565b604082019050919050565b600060208201905081810360008301526121fa816121be565b9050919050565b7f4f4e4c595f4d414e414745520000000000000000000000000000000000000000600082015250565b6000612237600c836120cc565b915061224282612201565b602082019050919050565b600060208201905081810360008301526122668161222a565b9050919050565b60008151905061227c81611dac565b92915050565b60006020828403121561229857612297611d2d565b5b60006122a68482850161226d565b91505092915050565b7f434853425f535550504c595f57524f4e47000000000000000000000000000000600082015250565b60006122e56011836120cc565b91506122f0826122af565b602082019050919050565b60006020820190508181036000830152612314816122d8565b9050919050565b7f414d4f554e545f5a45524f000000000000000000000000000000000000000000600082015250565b6000612351600b836120cc565b915061235c8261231b565b602082019050919050565b6000602082019050818103600083015261238081612344565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006123c182611da2565b91506123cc83611da2565b92508282019050808211156123e4576123e3612387565b5b92915050565b60006123f582611da2565b915061240083611da2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561243957612438612387565b5b828202905092915050565b7f555550535570677261646561626c653a206d757374206e6f742062652063616c60008201527f6c6564207468726f7567682064656c656761746563616c6c0000000000000000602082015250565b60006124a06038836120cc565b91506124ab82612444565b604082019050919050565b600060208201905081810360008301526124cf81612493565b9050919050565b7f414444524553535f5a45524f0000000000000000000000000000000000000000600082015250565b600061250c600c836120cc565b9150612517826124d6565b602082019050919050565b6000602082019050818103600083015261253b816124ff565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061259e6026836120cc565b91506125a982612542565b604082019050919050565b600060208201905081810360008301526125cd81612591565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000612630602e836120cc565b915061263b826125d4565b604082019050919050565b6000602082019050818103600083015261265f81612623565b9050919050565b6000819050919050565b600060ff82169050919050565b600061269861269361268e84612666565b611ca9565b612670565b9050919050565b6126a88161267d565b82525050565b60006020820190506126c3600083018461269f565b92915050565b6126d281611fd1565b81146126dd57600080fd5b50565b6000815190506126ef816126c9565b92915050565b60006020828403121561270b5761270a611d2d565b5b6000612719848285016126e0565b91505092915050565b7f45524331393637557067726164653a206e657720696d706c656d656e7461746960008201527f6f6e206973206e6f742055555053000000000000000000000000000000000000602082015250565b600061277e602e836120cc565b915061278982612722565b604082019050919050565b600060208201905081810360008301526127ad81612771565b9050919050565b7f45524331393637557067726164653a20756e737570706f727465642070726f7860008201527f6961626c65555549440000000000000000000000000000000000000000000000602082015250565b60006128106029836120cc565b915061281b826127b4565b604082019050919050565b6000602082019050818103600083015261283f81612803565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061287c6010836120cc565b915061288782612846565b602082019050919050565b600060208201905081810360008301526128ab8161286f565b9050919050565b60006060820190506128c76000830186611e05565b6128d46020830185611e05565b6128e16040830184612005565b949350505050565b60006040820190506128fe6000830185611e05565b61290b6020830184612005565b9392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129486020836120cc565b915061295382612912565b602082019050919050565b600060208201905081810360008301526129778161293b565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b60006129da602b836120cc565b91506129e58261297e565b604082019050919050565b60006020820190508181036000830152612a09816129cd565b9050919050565b7f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60008201527f6f74206120636f6e747261637400000000000000000000000000000000000000602082015250565b6000612a6c602d836120cc565b9150612a7782612a10565b604082019050919050565b60006020820190508181036000830152612a9b81612a5f565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000612ad86014836120cc565b9150612ae382612aa2565b602082019050919050565b60006020820190508181036000830152612b0781612acb565b9050919050565b612b178161202f565b8114612b2257600080fd5b50565b600081519050612b3481612b0e565b92915050565b600060208284031215612b5057612b4f611d2d565b5b6000612b5e84828501612b25565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000612bc3602a836120cc565b9150612bce82612b67565b604082019050919050565b60006020820190508181036000830152612bf281612bb6565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015612c2d578082015181840152602081019050612c12565b60008484015250505050565b6000612c4482612bf9565b612c4e8185612c04565b9350612c5e818560208601612c0f565b80840191505092915050565b6000612c768284612c39565b915081905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000612cdd6026836120cc565b9150612ce882612c81565b604082019050919050565b60006020820190508181036000830152612d0c81612cd0565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000612d49601d836120cc565b9150612d5482612d13565b602082019050919050565b60006020820190508181036000830152612d7881612d3c565b9050919050565b600081519050919050565b6000612d9582612d7f565b612d9f81856120cc565b9350612daf818560208601612c0f565b612db881611e39565b840191505092915050565b60006020820190508181036000830152612ddd8184612d8a565b90509291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220bb907d4bc06b8ca4992b688366cf91a53bb641b531819db2bfc5e9f37484c58a64736f6c63430008100033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.