Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 128 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Create Account | 21221935 | 8 days ago | IN | 0 ETH | 0.04082592 | ||||
Create Account | 21145145 | 19 days ago | IN | 0 ETH | 0.02611206 | ||||
Create Account | 21135306 | 20 days ago | IN | 0 ETH | 0.02635054 | ||||
Create Account | 20992440 | 40 days ago | IN | 0 ETH | 0.0457628 | ||||
Create Account | 20856066 | 59 days ago | IN | 0 ETH | 0.0089226 | ||||
Create Account | 20666610 | 85 days ago | IN | 0 ETH | 0.00153043 | ||||
Create Account | 20597058 | 95 days ago | IN | 0 ETH | 0.00140325 | ||||
Create Account | 20588451 | 96 days ago | IN | 0 ETH | 0.00161833 | ||||
Create Account | 20499843 | 109 days ago | IN | 0 ETH | 0.00200264 | ||||
Create Account | 20380106 | 125 days ago | IN | 0 ETH | 0.00535241 | ||||
Create Account | 20367132 | 127 days ago | IN | 0 ETH | 0.0057911 | ||||
Create Account | 20315280 | 134 days ago | IN | 0 ETH | 0.00855334 | ||||
Create Account | 20232955 | 146 days ago | IN | 0 ETH | 0.0126417 | ||||
Create Account | 20156968 | 156 days ago | IN | 0 ETH | 0.00489772 | ||||
Create Account | 20134731 | 160 days ago | IN | 0 ETH | 0.01323132 | ||||
Create Account | 20122341 | 161 days ago | IN | 0 ETH | 0.00731986 | ||||
Create Account | 20059262 | 170 days ago | IN | 0 ETH | 0.00050468 | ||||
Create Account | 19716409 | 218 days ago | IN | 0 ETH | 0.00026709 | ||||
Create Account | 19711250 | 219 days ago | IN | 0 ETH | 0.02551242 | ||||
Create Account | 19670907 | 224 days ago | IN | 0 ETH | 0.01645434 | ||||
Create Account | 19330001 | 272 days ago | IN | 0 ETH | 0.06864769 | ||||
Create Account | 19180793 | 293 days ago | IN | 0 ETH | 0.04159871 | ||||
Create Account | 19135482 | 300 days ago | IN | 0 ETH | 0.09934641 | ||||
Create Account | 19075634 | 308 days ago | IN | 0 ETH | 0.01459857 | ||||
Create Account | 18969968 | 323 days ago | IN | 0 ETH | 0.03077077 |
Latest 25 internal transactions (View All)
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:
WalletFactory
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.8.0 <0.9.0; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol"; import "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol"; import "@openzeppelin/contracts/proxy/Clones.sol"; import "../../timelock/TimelockCallable.sol"; import "../../common/Basic.sol"; import "./IControllerLink.sol"; interface IControllerLibSub { function initialize( address _adapterManager, address _autoExecutor, bytes memory data ) external; } contract ProxyWallet is TransparentUpgradeableProxy { event Received(address addr, uint256 amount); constructor( address _logic, address _admin, bytes memory _data ) payable TransparentUpgradeableProxy(_logic, _admin, _data) {} function getProxyAdmin() external view returns (address) { return _getAdmin(); } receive() external payable override { emit Received(msg.sender, msg.value); } } contract WalletFactory is TimelockCallable, Basic { address public immutable userDatabase; bytes32 public immutable trustProxyAdminCodeHash; //proxyAdmin for ControllerLib address public trustAccountLogic; //ControllerLib address public trustSubAccountLogic; //ControllerLibSub event updateTrustLogic( address _trustAccountLogic, address _trustSubAccountLogic ); event mainAccountCreate(address _userAddress, address _newAccount); event subAccountCreate(address _mainAccount, address _newSubAccount); constructor( address _userDatabase, address _trustAccountLogic, address _trustSubAccountLogic, address _timelock, bytes32 _trustProxyAdminCodeHash ) TimelockCallable(_timelock) { userDatabase = _userDatabase; trustAccountLogic = _trustAccountLogic; trustSubAccountLogic = _trustSubAccountLogic; trustProxyAdminCodeHash = _trustProxyAdminCodeHash; } function setTrustLogic( address _trustAccountLogic, address _trustSubAccountLogic ) external onlyTimelock { trustAccountLogic = _trustAccountLogic; trustSubAccountLogic = _trustSubAccountLogic; emit updateTrustLogic(trustAccountLogic, trustSubAccountLogic); } function proxyAdminCheck(address defaultProxyAdmin) internal returns (address) { if (defaultProxyAdmin == address(0)) { ProxyAdmin newProxyAdmin = new ProxyAdmin(); address newProxyAdminAddr = address(newProxyAdmin); Ownable(newProxyAdminAddr).transferOwnership(msg.sender); return newProxyAdminAddr; } bytes32 codeHash; assembly { codeHash := extcodehash(defaultProxyAdmin) } require( Ownable(defaultProxyAdmin).owner() == msg.sender && codeHash == trustProxyAdminCodeHash, "!trustProxyAdmin" ); return defaultProxyAdmin; } function upgradableWalletCreate( address _logic, address _admin, bytes memory _data ) internal returns (address) { ProxyWallet newAccount = new ProxyWallet(_logic, _admin, _data); address newAccountAddr = address(newAccount); OwnableUpgradeable(newAccountAddr).transferOwnership(msg.sender); IControllerLink(userDatabase).addAuth(msg.sender, newAccountAddr); emit mainAccountCreate(msg.sender, newAccountAddr); return newAccountAddr; } function createAccount(address _admin, bytes memory _data) external payable returns (address proxyAdmin, address newAccount) { proxyAdmin = proxyAdminCheck(_admin); newAccount = upgradableWalletCreate( trustAccountLogic, proxyAdmin, _data ); safeTransferETH(newAccount, msg.value); } function createSubAccount( address _adapterManager, address _autoExecutor, bytes memory _data ) external payable returns (address newAccount) { require( IControllerLink(userDatabase).existing(msg.sender) == true, "!cianUser" ); newAccount = Clones.clone(trustSubAccountLogic); IControllerLibSub(newAccount).initialize( _adapterManager, _autoExecutor, _data ); Ownable(newAccount).transferOwnership(msg.sender); IControllerLink(userDatabase).addAuth(msg.sender, newAccount); safeTransferETH(newAccount, msg.value); emit subAccountCreate(msg.sender, address(newAccount)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @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.7.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] * ``` * 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. Equivalent to `reinitializer(1)`. */ 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. * * `initializer` is equivalent to `reinitializer(1)`, so 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. * * 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. */ 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. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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 IERC1822Proxiable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.0; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeacon { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/Clones.sol) pragma solidity ^0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for * deploying minimal proxy contracts, also known as "clones". * * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies * > a minimal bytecode implementation that delegates all calls to a known, fixed address. * * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2` * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the * deterministic method. * * _Available since v3.4._ */ library Clones { /** * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`. * * This function uses the create opcode, which should never revert. */ function clone(address implementation) internal returns (address instance) { assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) instance := create(0, ptr, 0x37) } require(instance != address(0), "ERC1167: create failed"); } /** * @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`. * * This function uses the create2 opcode and a `salt` to deterministically deploy * the clone. Using the same `implementation` and `salt` multiple time will revert, since * the clones cannot be deployed twice at the same address. */ function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) { assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) instance := create2(0, ptr, 0x37, salt) } require(instance != address(0), "ERC1167: create2 failed"); } /** * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}. */ function predictDeterministicAddress( address implementation, bytes32 salt, address deployer ) internal pure returns (address predicted) { assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, implementation)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000) mstore(add(ptr, 0x38), shl(0x60, deployer)) mstore(add(ptr, 0x4c), salt) mstore(add(ptr, 0x6c), keccak256(ptr, 0x37)) predicted := keccak256(add(ptr, 0x37), 0x55) } } /** * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}. */ function predictDeterministicAddress(address implementation, bytes32 salt) internal view returns (address predicted) { return predictDeterministicAddress(implementation, salt, address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/ERC1967/ERC1967Proxy.sol) pragma solidity ^0.8.0; import "../Proxy.sol"; import "./ERC1967Upgrade.sol"; /** * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an * implementation address that can be changed. This address is stored in storage in the location specified by * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the * implementation behind the proxy. */ contract ERC1967Proxy is Proxy, ERC1967Upgrade { /** * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`. * * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded * function call, and allows initializating the storage of the proxy like a Solidity constructor. */ constructor(address _logic, bytes memory _data) payable { assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1)); _upgradeToAndCall(_logic, _data, false); } /** * @dev Returns the current implementation address. */ function _implementation() internal view virtual override returns (address impl) { return ERC1967Upgrade._getImplementation(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol) pragma solidity ^0.8.2; import "../beacon/IBeacon.sol"; import "../../interfaces/draft-IERC1822.sol"; import "../../utils/Address.sol"; import "../../utils/StorageSlot.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._ * * @custom:oz-upgrades-unsafe-allow delegatecall */ abstract contract ERC1967Upgrade { // 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 Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlot.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) { Address.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 (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) { _setImplementation(newImplementation); } else { try IERC1822Proxiable(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 Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlot.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 Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract"); require( Address.isContract(IBeacon(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlot.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) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (proxy/Proxy.sol) pragma solidity ^0.8.0; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to * be specified by overriding the virtual {_implementation} function. * * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a * different contract through the {_delegate} function. * * The success and return data of the delegated call will be returned back to the caller of the proxy. */ abstract contract Proxy { /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internall call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback() external payable virtual { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overriden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/transparent/ProxyAdmin.sol) pragma solidity ^0.8.0; import "./TransparentUpgradeableProxy.sol"; import "../../access/Ownable.sol"; /** * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}. */ contract ProxyAdmin is Ownable { /** * @dev Returns the current implementation of `proxy`. * * Requirements: * * - This contract must be the admin of `proxy`. */ function getProxyImplementation(TransparentUpgradeableProxy proxy) public view virtual returns (address) { // We need to manually run the static call since the getter cannot be flagged as view // bytes4(keccak256("implementation()")) == 0x5c60da1b (bool success, bytes memory returndata) = address(proxy).staticcall(hex"5c60da1b"); require(success); return abi.decode(returndata, (address)); } /** * @dev Returns the current admin of `proxy`. * * Requirements: * * - This contract must be the admin of `proxy`. */ function getProxyAdmin(TransparentUpgradeableProxy proxy) public view virtual returns (address) { // We need to manually run the static call since the getter cannot be flagged as view // bytes4(keccak256("admin()")) == 0xf851a440 (bool success, bytes memory returndata) = address(proxy).staticcall(hex"f851a440"); require(success); return abi.decode(returndata, (address)); } /** * @dev Changes the admin of `proxy` to `newAdmin`. * * Requirements: * * - This contract must be the current admin of `proxy`. */ function changeProxyAdmin(TransparentUpgradeableProxy proxy, address newAdmin) public virtual onlyOwner { proxy.changeAdmin(newAdmin); } /** * @dev Upgrades `proxy` to `implementation`. See {TransparentUpgradeableProxy-upgradeTo}. * * Requirements: * * - This contract must be the admin of `proxy`. */ function upgrade(TransparentUpgradeableProxy proxy, address implementation) public virtual onlyOwner { proxy.upgradeTo(implementation); } /** * @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation. See * {TransparentUpgradeableProxy-upgradeToAndCall}. * * Requirements: * * - This contract must be the admin of `proxy`. */ function upgradeAndCall( TransparentUpgradeableProxy proxy, address implementation, bytes memory data ) public payable virtual onlyOwner { proxy.upgradeToAndCall{value: msg.value}(implementation, data); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/transparent/TransparentUpgradeableProxy.sol) pragma solidity ^0.8.0; import "../ERC1967/ERC1967Proxy.sol"; /** * @dev This contract implements a proxy that is upgradeable by an admin. * * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector * clashing], which can potentially be used in an attack, this contract uses the * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two * things that go hand in hand: * * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if * that call matches one of the admin functions exposed by the proxy itself. * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the * implementation. If the admin tries to call a function on the implementation it will fail with an error that says * "admin cannot fallback to proxy target". * * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due * to sudden errors when trying to call a function from the proxy implementation. * * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy. */ contract TransparentUpgradeableProxy is ERC1967Proxy { /** * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}. */ constructor( address _logic, address admin_, bytes memory _data ) payable ERC1967Proxy(_logic, _data) { assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1)); _changeAdmin(admin_); } /** * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. */ modifier ifAdmin() { if (msg.sender == _getAdmin()) { _; } else { _fallback(); } } /** * @dev Returns the current admin. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function admin() external ifAdmin returns (address admin_) { admin_ = _getAdmin(); } /** * @dev Returns the current implementation. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc` */ function implementation() external ifAdmin returns (address implementation_) { implementation_ = _implementation(); } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. * * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}. */ function changeAdmin(address newAdmin) external virtual ifAdmin { _changeAdmin(newAdmin); } /** * @dev Upgrade the implementation of the proxy. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}. */ function upgradeTo(address newImplementation) external ifAdmin { _upgradeToAndCall(newImplementation, bytes(""), false); } /** * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the * proxied contract. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}. */ function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin { _upgradeToAndCall(newImplementation, data, true); } /** * @dev Returns the current admin. */ function _admin() internal view virtual returns (address) { return _getAdmin(); } /** * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}. */ function _beforeFallback() internal virtual override { require(msg.sender != _getAdmin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target"); super._beforeFallback(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 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; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/StorageSlot.sol) 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: * ``` * 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`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { assembly { r.slot := slot } } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.8.0 <0.9.0; abstract contract Basic { /** * @dev Return ethereum address */ address public constant ethAddr = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /// @dev Return Wrapped ETH address address public constant wethAddr = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; function safeTransferETH(address to, uint256 value) internal { if (value != 0) { (bool success, ) = to.call{value: value}(new bytes(0)); require(success, "helper::safeTransferETH: ETH transfer failed"); } } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.8.0 <0.9.0; interface IControllerLink { function addAuth(address _owner, address _account) external; function existing(address _account) external view returns (bool); }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.8.0 <0.9.0; abstract contract TimelockCallable { address public TIMELOCK_ADDRESS; event SetTimeLock(address newTimelock); constructor(address _timelock) { TIMELOCK_ADDRESS = _timelock; } modifier onlyTimelock() { require(TIMELOCK_ADDRESS == msg.sender, "Caller is not the timelock."); _; } function setTimelock(address newTimelock) external onlyTimelock { require(newTimelock != address(0)); TIMELOCK_ADDRESS = newTimelock; emit SetTimeLock(newTimelock); } }
{ "optimizer": { "enabled": true, "runs": 10000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_userDatabase","type":"address"},{"internalType":"address","name":"_trustAccountLogic","type":"address"},{"internalType":"address","name":"_trustSubAccountLogic","type":"address"},{"internalType":"address","name":"_timelock","type":"address"},{"internalType":"bytes32","name":"_trustProxyAdminCodeHash","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTimelock","type":"address"}],"name":"SetTimeLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_userAddress","type":"address"},{"indexed":false,"internalType":"address","name":"_newAccount","type":"address"}],"name":"mainAccountCreate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_mainAccount","type":"address"},{"indexed":false,"internalType":"address","name":"_newSubAccount","type":"address"}],"name":"subAccountCreate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_trustAccountLogic","type":"address"},{"indexed":false,"internalType":"address","name":"_trustSubAccountLogic","type":"address"}],"name":"updateTrustLogic","type":"event"},{"inputs":[],"name":"TIMELOCK_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"createAccount","outputs":[{"internalType":"address","name":"proxyAdmin","type":"address"},{"internalType":"address","name":"newAccount","type":"address"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_adapterManager","type":"address"},{"internalType":"address","name":"_autoExecutor","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"createSubAccount","outputs":[{"internalType":"address","name":"newAccount","type":"address"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ethAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newTimelock","type":"address"}],"name":"setTimelock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_trustAccountLogic","type":"address"},{"internalType":"address","name":"_trustSubAccountLogic","type":"address"}],"name":"setTrustLogic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trustAccountLogic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trustProxyAdminCodeHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trustSubAccountLogic","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"userDatabase","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wethAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162002fc238038062002fc283398101604081905262000034916200009c565b600080546001600160a01b03199081166001600160a01b0394851617909155948216608052600180548616948316949094179093556002805490941691161790915560a05262000103565b80516001600160a01b03811681146200009757600080fd5b919050565b600080600080600060a08688031215620000b557600080fd5b620000c0866200007f565b9450620000d0602087016200007f565b9350620000e0604087016200007f565b9250620000f0606087016200007f565b9150608086015190509295509295909350565b60805160a051612e7d620001456000396000818161013d0152610c6b01526000818161029701528181610449015281816106b60152610e0b0152612e7d6000f3fe608060405260043610620000cb5760003560e01c80637d5aa5f4116200007d578063bdacb3031162000054578063bdacb303146200025e578063cef6b0861462000283578063d8fd8f4414620002b957600080fd5b80637d5aa5f414620001f35780637e74a2be146200021d578063bbf646c2146200023457600080fd5b80633b88669e11620000b25780633b88669e146200016e578063431c18301462000195578063795ea91214620001c457600080fd5b8063072ca8ab14620000d05780630d496e7d1462000129575b600080fd5b348015620000dd57600080fd5b50600254620000ff9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b3480156200013657600080fd5b506200015f7f000000000000000000000000000000000000000000000000000000000000000081565b60405190815260200162000120565b3480156200017b57600080fd5b50620001936200018d36600462000f05565b620002fe565b005b348015620001a257600080fd5b50600054620000ff9073ffffffffffffffffffffffffffffffffffffffff1681565b348015620001d157600080fd5b50600154620000ff9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156200020057600080fd5b50620000ff73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b620000ff6200022e36600462001025565b62000418565b3480156200024157600080fd5b50620000ff73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b3480156200026b57600080fd5b50620001936200027d3660046200108f565b62000777565b3480156200029057600080fd5b50620000ff7f000000000000000000000000000000000000000000000000000000000000000081565b620002d0620002ca366004620010b6565b62000894565b6040805173ffffffffffffffffffffffffffffffffffffffff93841681529290911660208301520162000120565b60005473ffffffffffffffffffffffffffffffffffffffff16331462000385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f43616c6c6572206973206e6f74207468652074696d656c6f636b2e000000000060448201526064015b60405180910390fd5b6001805473ffffffffffffffffffffffffffffffffffffffff8481167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909355600280549185169190921681179091556040805192835260208301919091527fecff6e7a5f25c132b9b0d425667ffc848b8fda0a65315e26ee334c306fe3aff7910160405180910390a15050565b6040517ff3443cb10000000000000000000000000000000000000000000000000000000081523360048201526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063f3443cb190602401602060405180830381865afa158015620004a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004cc91906200110c565b151560011462000539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f216369616e55736572000000000000000000000000000000000000000000000060448201526064016200037c565b6002546200055d9073ffffffffffffffffffffffffffffffffffffffff16620008e0565b6040517fcf7a1d7700000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff82169063cf7a1d7790620005b89087908790879060040162001156565b600060405180830381600087803b158015620005d357600080fd5b505af1158015620005e8573d6000803e3d6000fd5b50506040517ff2fde38b00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff8416925063f2fde38b9150602401600060405180830381600087803b1580156200065457600080fd5b505af115801562000669573d6000803e3d6000fd5b50506040517f8ca0a48600000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff84811660248301527f0000000000000000000000000000000000000000000000000000000000000000169250638ca0a4869150604401600060405180830381600087803b158015620006fd57600080fd5b505af115801562000712573d6000803e3d6000fd5b50505050620007228134620009c4565b6040805133815273ffffffffffffffffffffffffffffffffffffffff831660208201527f83a216b309cda44ba08cc9fa79e09e5e1e14409d9d95dd1d6eaffbd65cd089cb910160405180910390a19392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314620007fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f43616c6c6572206973206e6f74207468652074696d656c6f636b2e000000000060448201526064016200037c565b73ffffffffffffffffffffffffffffffffffffffff81166200081b57600080fd5b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f087857e9a8e6bcdb5918f98e558ad983e7c50ec69df7912e2103379d0afa61f79060200160405180910390a150565b600080620008a28462000ae1565b600154909250620008cb9073ffffffffffffffffffffffffffffffffffffffff16838562000cfc565b9050620008d98134620009c4565b9250929050565b60006040517f3d602d80600a3d3981f3363d3d373d3d3d363d7300000000000000000000000081528260601b60148201527f5af43d82803e903d91602b57fd5bf3000000000000000000000000000000000060288201526037816000f091505073ffffffffffffffffffffffffffffffffffffffff8116620009bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f455243313136373a20637265617465206661696c65640000000000000000000060448201526064016200037c565b919050565b801562000add576040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff841690839060405162000a049190620011d1565b60006040518083038185875af1925050503d806000811462000a43576040519150601f19603f3d011682016040523d82523d6000602084013e62000a48565b606091505b505090508062000adb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f68656c7065723a3a736166655472616e736665724554483a204554482074726160448201527f6e73666572206661696c6564000000000000000000000000000000000000000060648201526084016200037c565b505b5050565b600073ffffffffffffffffffffffffffffffffffffffff821662000bbb57600060405162000b0f9062000ec3565b604051809103906000f08015801562000b2c573d6000803e3d6000fd5b506040517ff2fde38b000000000000000000000000000000000000000000000000000000008152336004820152909150819073ffffffffffffffffffffffffffffffffffffffff82169063f2fde38b90602401600060405180830381600087803b15801562000b9a57600080fd5b505af115801562000baf573d6000803e3d6000fd5b50929695505050505050565b6000823f90503373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000c24573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c4a9190620011ef565b73ffffffffffffffffffffffffffffffffffffffff1614801562000c8d57507f000000000000000000000000000000000000000000000000000000000000000081145b62000cf5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f21747275737450726f787941646d696e0000000000000000000000000000000060448201526064016200037c565b5090919050565b60008084848460405162000d109062000ed1565b62000d1e9392919062001156565b604051809103906000f08015801562000d3b573d6000803e3d6000fd5b506040517ff2fde38b000000000000000000000000000000000000000000000000000000008152336004820152909150819073ffffffffffffffffffffffffffffffffffffffff82169063f2fde38b90602401600060405180830381600087803b15801562000da957600080fd5b505af115801562000dbe573d6000803e3d6000fd5b50506040517f8ca0a48600000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff84811660248301527f0000000000000000000000000000000000000000000000000000000000000000169250638ca0a4869150604401600060405180830381600087803b15801562000e5257600080fd5b505af115801562000e67573d6000803e3d6000fd5b50506040805133815273ffffffffffffffffffffffffffffffffffffffff851660208201527faca2b434f0b7a69b3f984221dd9e241f7f4f78746a8d05c207f2b42d8ff24ca7935001905060405180910390a195945050505050565b610abf806200121083390190565b6111798062001ccf83390190565b73ffffffffffffffffffffffffffffffffffffffff8116811462000f0257600080fd5b50565b6000806040838503121562000f1957600080fd5b823562000f268162000edf565b9150602083013562000f388162000edf565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011262000f8457600080fd5b813567ffffffffffffffff8082111562000fa25762000fa262000f43565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171562000feb5762000feb62000f43565b816040528381528660208588010111156200100557600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200103b57600080fd5b8335620010488162000edf565b925060208401356200105a8162000edf565b9150604084013567ffffffffffffffff8111156200107757600080fd5b620010858682870162000f72565b9150509250925092565b600060208284031215620010a257600080fd5b8135620010af8162000edf565b9392505050565b60008060408385031215620010ca57600080fd5b8235620010d78162000edf565b9150602083013567ffffffffffffffff811115620010f457600080fd5b620011028582860162000f72565b9150509250929050565b6000602082840312156200111f57600080fd5b81518015158114620010af57600080fd5b60005b838110156200114d57818101518382015260200162001133565b50506000910152565b600073ffffffffffffffffffffffffffffffffffffffff80861683528085166020840152506060604083015282518060608401526200119d81608085016020870162001130565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01691909101608001949350505050565b60008251620011e581846020870162001130565b9190910192915050565b6000602082840312156200120257600080fd5b8151620010af8162000edf56fe608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a418061007e6000396000f3fe60806040526004361061007b5760003560e01c80639623609d1161004e5780639623609d1461012b57806399a88ec41461013e578063f2fde38b1461015e578063f3b7dead1461017e57600080fd5b8063204e1c7a14610080578063715018a6146100c95780637eff275e146100e05780638da5cb5b14610100575b600080fd5b34801561008c57600080fd5b506100a061009b3660046107e4565b61019e565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b3480156100d557600080fd5b506100de610255565b005b3480156100ec57600080fd5b506100de6100fb366004610808565b6102e7565b34801561010c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166100a0565b6100de610139366004610870565b6103ee565b34801561014a57600080fd5b506100de610159366004610808565b6104fc565b34801561016a57600080fd5b506100de6101793660046107e4565b6105d1565b34801561018a57600080fd5b506100a06101993660046107e4565b610701565b60008060008373ffffffffffffffffffffffffffffffffffffffff166040516101ea907f5c60da1b00000000000000000000000000000000000000000000000000000000815260040190565b600060405180830381855afa9150503d8060008114610225576040519150601f19603f3d011682016040523d82523d6000602084013e61022a565b606091505b50915091508161023957600080fd5b8080602001905181019061024d9190610964565b949350505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146102db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6102e5600061074d565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102d2565b6040517f8f28397000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8281166004830152831690638f283970906024015b600060405180830381600087803b1580156103d257600080fd5b505af11580156103e6573d6000803e3d6000fd5b505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461046f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102d2565b6040517f4f1ef28600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841690634f1ef2869034906104c59086908690600401610981565b6000604051808303818588803b1580156104de57600080fd5b505af11580156104f2573d6000803e3d6000fd5b5050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461057d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102d2565b6040517f3659cfe600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8281166004830152831690633659cfe6906024016103b8565b60005473ffffffffffffffffffffffffffffffffffffffff163314610652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102d2565b73ffffffffffffffffffffffffffffffffffffffff81166106f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016102d2565b6106fe8161074d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff166040516101ea907ff851a44000000000000000000000000000000000000000000000000000000000815260040190565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff811681146106fe57600080fd5b6000602082840312156107f657600080fd5b8135610801816107c2565b9392505050565b6000806040838503121561081b57600080fd5b8235610826816107c2565b91506020830135610836816107c2565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060006060848603121561088557600080fd5b8335610890816107c2565b925060208401356108a0816107c2565b9150604084013567ffffffffffffffff808211156108bd57600080fd5b818601915086601f8301126108d157600080fd5b8135818111156108e3576108e3610841565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561092957610929610841565b8160405282815289602084870101111561094257600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b60006020828403121561097657600080fd5b8151610801816107c2565b73ffffffffffffffffffffffffffffffffffffffff8316815260006020604081840152835180604085015260005b818110156109cb578581018301518582016060015282016109af565b5060006060828601015260607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011685010192505050939250505056fea26469706673582212208f214105aab57f91a90c8156e318b957247df49b8bb6efcf5a66cc7939fbd62c64736f6c634300081100336080604052604051620011793803806200117983398101604081905262000026916200051a565b82828282816200005860017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd620005fa565b60008051602062001132833981519152146200007857620000786200061c565b6200008682826000620000ed565b50620000b6905060017fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6104620005fa565b6000805160206200111283398151915214620000d657620000d66200061c565b620000e1826200012a565b50505050505062000685565b620000f88362000185565b600082511180620001065750805b156200012557620001238383620001c760201b620002e81760201c565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f62000155620001f8565b604080516001600160a01b03928316815291841660208301520160405180910390a1620001828162000231565b50565b6200019081620002e6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6060620001ef8383604051806060016040528060278152602001620011526027913962000389565b90505b92915050565b6000620002226000805160206200111283398151915260001b6200047160201b620002801760201c565b546001600160a01b0316919050565b6001600160a01b0381166200029c5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b80620002c56000805160206200111283398151915260001b6200047160201b620002801760201c565b80546001600160a01b0319166001600160a01b039290921691909117905550565b620002fc816200047460201b620003141760201c565b620003605760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840162000293565b80620002c56000805160206200113283398151915260001b6200047160201b620002801760201c565b60606001600160a01b0384163b620003f35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840162000293565b600080856001600160a01b03168560405162000410919062000632565b600060405180830381855af49150503d80600081146200044d576040519150601f19603f3d011682016040523d82523d6000602084013e62000452565b606091505b5090925090506200046582828662000483565b925050505b9392505050565b90565b6001600160a01b03163b151590565b60608315620004945750816200046a565b825115620004a55782518084602001fd5b8160405162461bcd60e51b815260040162000293919062000650565b80516001600160a01b0381168114620004d957600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000511578181015183820152602001620004f7565b50506000910152565b6000806000606084860312156200053057600080fd5b6200053b84620004c1565b92506200054b60208501620004c1565b60408501519092506001600160401b03808211156200056957600080fd5b818601915086601f8301126200057e57600080fd5b815181811115620005935762000593620004de565b604051601f8201601f19908116603f01168101908382118183101715620005be57620005be620004de565b81604052828152896020848701011115620005d857600080fd5b620005eb836020830160208801620004f4565b80955050505050509250925092565b81810381811115620001f257634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052600160045260246000fd5b6000825162000646818460208701620004f4565b9190910192915050565b602081526000825180602084015262000671816040850160208701620004f4565b601f01601f19169190910160400192915050565b610a7d80620006956000396000f3fe6080604052600436106100695760003560e01c80638b3240a0116100435780638b3240a0146101235780638f28397014610138578063f851a44014610158576100a8565b80633659cfe6146100b25780634f1ef286146100d25780635c60da1b146100e5576100a8565b366100a857604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b6100b061016d565b005b3480156100be57600080fd5b506100b06100cd3660046108f1565b610187565b6100b06100e036600461090c565b6101d1565b3480156100f157600080fd5b506100fa610245565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b34801561012f57600080fd5b506100fa610283565b34801561014457600080fd5b506100b06101533660046108f1565b61028d565b34801561016457600080fd5b506100fa6102ba565b610175610330565b610185610180610407565b610411565b565b61018f610435565b73ffffffffffffffffffffffffffffffffffffffff1633036101c9576101c681604051806020016040528060008152506000610475565b50565b6101c661016d565b6101d9610435565b73ffffffffffffffffffffffffffffffffffffffff16330361023d576102388383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250610475915050565b505050565b61023861016d565b600061024f610435565b73ffffffffffffffffffffffffffffffffffffffff16330361027857610273610407565b905090565b61028061016d565b90565b6000610273610435565b610295610435565b73ffffffffffffffffffffffffffffffffffffffff1633036101c9576101c6816104a0565b60006102c4610435565b73ffffffffffffffffffffffffffffffffffffffff16330361027857610273610435565b606061030d8383604051806060016040528060278152602001610a2160279139610501565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b610338610435565b73ffffffffffffffffffffffffffffffffffffffff163303610185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760648201527f6574000000000000000000000000000000000000000000000000000000000000608482015260a4015b60405180910390fd5b6000610273610629565b3660008037600080366000845af43d6000803e808015610430573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b5473ffffffffffffffffffffffffffffffffffffffff16919050565b61047e83610651565b60008251118061048b5750805b156102385761049a83836102e8565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6104c9610435565b6040805173ffffffffffffffffffffffffffffffffffffffff928316815291841660208301520160405180910390a16101c68161069e565b606073ffffffffffffffffffffffffffffffffffffffff84163b6105a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e7472616374000000000000000000000000000000000000000000000000000060648201526084016103fe565b6000808573ffffffffffffffffffffffffffffffffffffffff16856040516105cf91906109b3565b600060405180830381855af49150503d806000811461060a576040519150601f19603f3d011682016040523d82523d6000602084013e61060f565b606091505b509150915061061f8282866107aa565b9695505050505050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610459565b61065a816107fd565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b73ffffffffffffffffffffffffffffffffffffffff8116610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103fe565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905550565b606083156107b957508161030d565b8251156107c95782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103fe91906109cf565b73ffffffffffffffffffffffffffffffffffffffff81163b6108a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e74726163740000000000000000000000000000000000000060648201526084016103fe565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610764565b803573ffffffffffffffffffffffffffffffffffffffff811681146108ec57600080fd5b919050565b60006020828403121561090357600080fd5b61030d826108c8565b60008060006040848603121561092157600080fd5b61092a846108c8565b9250602084013567ffffffffffffffff8082111561094757600080fd5b818601915086601f83011261095b57600080fd5b81358181111561096a57600080fd5b87602082850101111561097c57600080fd5b6020830194508093505050509250925092565b60005b838110156109aa578181015183820152602001610992565b50506000910152565b600082516109c581846020870161098f565b9190910192915050565b60208152600082518060208401526109ee81604085016020870161098f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212206c972a61c6678ef1d88bd3c2e6728879ed12dfc433994eabe4e6639e939b819764736f6c63430008110033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122054520ddbd1f1eb1cbf839b2a592500b7ff2a1690f7563bd93a5f5fc9a0c0707c64736f6c63430008110033000000000000000000000000b329504622bd79329c6f82cf8c60c807df2090c400000000000000000000000074d2bef5afe200dacc76fe2d3c4022435b54cdbb00000000000000000000000068041721c81c695b72495f78beac4f7dfd7b19c8000000000000000000000000b39e6f93cff9af7011810f41a4ed9b14582019b743094b510fe2b557778dd5ce3d8afb686e919cbf319cabcd4527fa09be51e809
Deployed Bytecode
0x608060405260043610620000cb5760003560e01c80637d5aa5f4116200007d578063bdacb3031162000054578063bdacb303146200025e578063cef6b0861462000283578063d8fd8f4414620002b957600080fd5b80637d5aa5f414620001f35780637e74a2be146200021d578063bbf646c2146200023457600080fd5b80633b88669e11620000b25780633b88669e146200016e578063431c18301462000195578063795ea91214620001c457600080fd5b8063072ca8ab14620000d05780630d496e7d1462000129575b600080fd5b348015620000dd57600080fd5b50600254620000ff9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b3480156200013657600080fd5b506200015f7f43094b510fe2b557778dd5ce3d8afb686e919cbf319cabcd4527fa09be51e80981565b60405190815260200162000120565b3480156200017b57600080fd5b50620001936200018d36600462000f05565b620002fe565b005b348015620001a257600080fd5b50600054620000ff9073ffffffffffffffffffffffffffffffffffffffff1681565b348015620001d157600080fd5b50600154620000ff9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156200020057600080fd5b50620000ff73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b620000ff6200022e36600462001025565b62000418565b3480156200024157600080fd5b50620000ff73eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee81565b3480156200026b57600080fd5b50620001936200027d3660046200108f565b62000777565b3480156200029057600080fd5b50620000ff7f000000000000000000000000b329504622bd79329c6f82cf8c60c807df2090c481565b620002d0620002ca366004620010b6565b62000894565b6040805173ffffffffffffffffffffffffffffffffffffffff93841681529290911660208301520162000120565b60005473ffffffffffffffffffffffffffffffffffffffff16331462000385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f43616c6c6572206973206e6f74207468652074696d656c6f636b2e000000000060448201526064015b60405180910390fd5b6001805473ffffffffffffffffffffffffffffffffffffffff8481167fffffffffffffffffffffffff00000000000000000000000000000000000000009283168117909355600280549185169190921681179091556040805192835260208301919091527fecff6e7a5f25c132b9b0d425667ffc848b8fda0a65315e26ee334c306fe3aff7910160405180910390a15050565b6040517ff3443cb10000000000000000000000000000000000000000000000000000000081523360048201526000907f000000000000000000000000b329504622bd79329c6f82cf8c60c807df2090c473ffffffffffffffffffffffffffffffffffffffff169063f3443cb190602401602060405180830381865afa158015620004a6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004cc91906200110c565b151560011462000539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600960248201527f216369616e55736572000000000000000000000000000000000000000000000060448201526064016200037c565b6002546200055d9073ffffffffffffffffffffffffffffffffffffffff16620008e0565b6040517fcf7a1d7700000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff82169063cf7a1d7790620005b89087908790879060040162001156565b600060405180830381600087803b158015620005d357600080fd5b505af1158015620005e8573d6000803e3d6000fd5b50506040517ff2fde38b00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff8416925063f2fde38b9150602401600060405180830381600087803b1580156200065457600080fd5b505af115801562000669573d6000803e3d6000fd5b50506040517f8ca0a48600000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff84811660248301527f000000000000000000000000b329504622bd79329c6f82cf8c60c807df2090c4169250638ca0a4869150604401600060405180830381600087803b158015620006fd57600080fd5b505af115801562000712573d6000803e3d6000fd5b50505050620007228134620009c4565b6040805133815273ffffffffffffffffffffffffffffffffffffffff831660208201527f83a216b309cda44ba08cc9fa79e09e5e1e14409d9d95dd1d6eaffbd65cd089cb910160405180910390a19392505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314620007fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f43616c6c6572206973206e6f74207468652074696d656c6f636b2e000000000060448201526064016200037c565b73ffffffffffffffffffffffffffffffffffffffff81166200081b57600080fd5b600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f087857e9a8e6bcdb5918f98e558ad983e7c50ec69df7912e2103379d0afa61f79060200160405180910390a150565b600080620008a28462000ae1565b600154909250620008cb9073ffffffffffffffffffffffffffffffffffffffff16838562000cfc565b9050620008d98134620009c4565b9250929050565b60006040517f3d602d80600a3d3981f3363d3d373d3d3d363d7300000000000000000000000081528260601b60148201527f5af43d82803e903d91602b57fd5bf3000000000000000000000000000000000060288201526037816000f091505073ffffffffffffffffffffffffffffffffffffffff8116620009bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f455243313136373a20637265617465206661696c65640000000000000000000060448201526064016200037c565b919050565b801562000add576040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff841690839060405162000a049190620011d1565b60006040518083038185875af1925050503d806000811462000a43576040519150601f19603f3d011682016040523d82523d6000602084013e62000a48565b606091505b505090508062000adb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f68656c7065723a3a736166655472616e736665724554483a204554482074726160448201527f6e73666572206661696c6564000000000000000000000000000000000000000060648201526084016200037c565b505b5050565b600073ffffffffffffffffffffffffffffffffffffffff821662000bbb57600060405162000b0f9062000ec3565b604051809103906000f08015801562000b2c573d6000803e3d6000fd5b506040517ff2fde38b000000000000000000000000000000000000000000000000000000008152336004820152909150819073ffffffffffffffffffffffffffffffffffffffff82169063f2fde38b90602401600060405180830381600087803b15801562000b9a57600080fd5b505af115801562000baf573d6000803e3d6000fd5b50929695505050505050565b6000823f90503373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000c24573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c4a9190620011ef565b73ffffffffffffffffffffffffffffffffffffffff1614801562000c8d57507f43094b510fe2b557778dd5ce3d8afb686e919cbf319cabcd4527fa09be51e80981145b62000cf5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f21747275737450726f787941646d696e0000000000000000000000000000000060448201526064016200037c565b5090919050565b60008084848460405162000d109062000ed1565b62000d1e9392919062001156565b604051809103906000f08015801562000d3b573d6000803e3d6000fd5b506040517ff2fde38b000000000000000000000000000000000000000000000000000000008152336004820152909150819073ffffffffffffffffffffffffffffffffffffffff82169063f2fde38b90602401600060405180830381600087803b15801562000da957600080fd5b505af115801562000dbe573d6000803e3d6000fd5b50506040517f8ca0a48600000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff84811660248301527f000000000000000000000000b329504622bd79329c6f82cf8c60c807df2090c4169250638ca0a4869150604401600060405180830381600087803b15801562000e5257600080fd5b505af115801562000e67573d6000803e3d6000fd5b50506040805133815273ffffffffffffffffffffffffffffffffffffffff851660208201527faca2b434f0b7a69b3f984221dd9e241f7f4f78746a8d05c207f2b42d8ff24ca7935001905060405180910390a195945050505050565b610abf806200121083390190565b6111798062001ccf83390190565b73ffffffffffffffffffffffffffffffffffffffff8116811462000f0257600080fd5b50565b6000806040838503121562000f1957600080fd5b823562000f268162000edf565b9150602083013562000f388162000edf565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f83011262000f8457600080fd5b813567ffffffffffffffff8082111562000fa25762000fa262000f43565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171562000feb5762000feb62000f43565b816040528381528660208588010111156200100557600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200103b57600080fd5b8335620010488162000edf565b925060208401356200105a8162000edf565b9150604084013567ffffffffffffffff8111156200107757600080fd5b620010858682870162000f72565b9150509250925092565b600060208284031215620010a257600080fd5b8135620010af8162000edf565b9392505050565b60008060408385031215620010ca57600080fd5b8235620010d78162000edf565b9150602083013567ffffffffffffffff811115620010f457600080fd5b620011028582860162000f72565b9150509250929050565b6000602082840312156200111f57600080fd5b81518015158114620010af57600080fd5b60005b838110156200114d57818101518382015260200162001133565b50506000910152565b600073ffffffffffffffffffffffffffffffffffffffff80861683528085166020840152506060604083015282518060608401526200119d81608085016020870162001130565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01691909101608001949350505050565b60008251620011e581846020870162001130565b9190910192915050565b6000602082840312156200120257600080fd5b8151620010af8162000edf56fe608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610a418061007e6000396000f3fe60806040526004361061007b5760003560e01c80639623609d1161004e5780639623609d1461012b57806399a88ec41461013e578063f2fde38b1461015e578063f3b7dead1461017e57600080fd5b8063204e1c7a14610080578063715018a6146100c95780637eff275e146100e05780638da5cb5b14610100575b600080fd5b34801561008c57600080fd5b506100a061009b3660046107e4565b61019e565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b3480156100d557600080fd5b506100de610255565b005b3480156100ec57600080fd5b506100de6100fb366004610808565b6102e7565b34801561010c57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166100a0565b6100de610139366004610870565b6103ee565b34801561014a57600080fd5b506100de610159366004610808565b6104fc565b34801561016a57600080fd5b506100de6101793660046107e4565b6105d1565b34801561018a57600080fd5b506100a06101993660046107e4565b610701565b60008060008373ffffffffffffffffffffffffffffffffffffffff166040516101ea907f5c60da1b00000000000000000000000000000000000000000000000000000000815260040190565b600060405180830381855afa9150503d8060008114610225576040519150601f19603f3d011682016040523d82523d6000602084013e61022a565b606091505b50915091508161023957600080fd5b8080602001905181019061024d9190610964565b949350505050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146102db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6102e5600061074d565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314610368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102d2565b6040517f8f28397000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8281166004830152831690638f283970906024015b600060405180830381600087803b1580156103d257600080fd5b505af11580156103e6573d6000803e3d6000fd5b505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461046f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102d2565b6040517f4f1ef28600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841690634f1ef2869034906104c59086908690600401610981565b6000604051808303818588803b1580156104de57600080fd5b505af11580156104f2573d6000803e3d6000fd5b5050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331461057d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102d2565b6040517f3659cfe600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8281166004830152831690633659cfe6906024016103b8565b60005473ffffffffffffffffffffffffffffffffffffffff163314610652576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102d2565b73ffffffffffffffffffffffffffffffffffffffff81166106f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016102d2565b6106fe8161074d565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff166040516101ea907ff851a44000000000000000000000000000000000000000000000000000000000815260040190565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff811681146106fe57600080fd5b6000602082840312156107f657600080fd5b8135610801816107c2565b9392505050565b6000806040838503121561081b57600080fd5b8235610826816107c2565b91506020830135610836816107c2565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060006060848603121561088557600080fd5b8335610890816107c2565b925060208401356108a0816107c2565b9150604084013567ffffffffffffffff808211156108bd57600080fd5b818601915086601f8301126108d157600080fd5b8135818111156108e3576108e3610841565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171561092957610929610841565b8160405282815289602084870101111561094257600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b60006020828403121561097657600080fd5b8151610801816107c2565b73ffffffffffffffffffffffffffffffffffffffff8316815260006020604081840152835180604085015260005b818110156109cb578581018301518582016060015282016109af565b5060006060828601015260607fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011685010192505050939250505056fea26469706673582212208f214105aab57f91a90c8156e318b957247df49b8bb6efcf5a66cc7939fbd62c64736f6c634300081100336080604052604051620011793803806200117983398101604081905262000026916200051a565b82828282816200005860017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd620005fa565b60008051602062001132833981519152146200007857620000786200061c565b6200008682826000620000ed565b50620000b6905060017fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6104620005fa565b6000805160206200111283398151915214620000d657620000d66200061c565b620000e1826200012a565b50505050505062000685565b620000f88362000185565b600082511180620001065750805b156200012557620001238383620001c760201b620002e81760201c565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f62000155620001f8565b604080516001600160a01b03928316815291841660208301520160405180910390a1620001828162000231565b50565b6200019081620002e6565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6060620001ef8383604051806060016040528060278152602001620011526027913962000389565b90505b92915050565b6000620002226000805160206200111283398151915260001b6200047160201b620002801760201c565b546001600160a01b0316919050565b6001600160a01b0381166200029c5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b80620002c56000805160206200111283398151915260001b6200047160201b620002801760201c565b80546001600160a01b0319166001600160a01b039290921691909117905550565b620002fc816200047460201b620003141760201c565b620003605760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b606482015260840162000293565b80620002c56000805160206200113283398151915260001b6200047160201b620002801760201c565b60606001600160a01b0384163b620003f35760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840162000293565b600080856001600160a01b03168560405162000410919062000632565b600060405180830381855af49150503d80600081146200044d576040519150601f19603f3d011682016040523d82523d6000602084013e62000452565b606091505b5090925090506200046582828662000483565b925050505b9392505050565b90565b6001600160a01b03163b151590565b60608315620004945750816200046a565b825115620004a55782518084602001fd5b8160405162461bcd60e51b815260040162000293919062000650565b80516001600160a01b0381168114620004d957600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b8381101562000511578181015183820152602001620004f7565b50506000910152565b6000806000606084860312156200053057600080fd5b6200053b84620004c1565b92506200054b60208501620004c1565b60408501519092506001600160401b03808211156200056957600080fd5b818601915086601f8301126200057e57600080fd5b815181811115620005935762000593620004de565b604051601f8201601f19908116603f01168101908382118183101715620005be57620005be620004de565b81604052828152896020848701011115620005d857600080fd5b620005eb836020830160208801620004f4565b80955050505050509250925092565b81810381811115620001f257634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052600160045260246000fd5b6000825162000646818460208701620004f4565b9190910192915050565b602081526000825180602084015262000671816040850160208701620004f4565b601f01601f19169190910160400192915050565b610a7d80620006956000396000f3fe6080604052600436106100695760003560e01c80638b3240a0116100435780638b3240a0146101235780638f28397014610138578063f851a44014610158576100a8565b80633659cfe6146100b25780634f1ef286146100d25780635c60da1b146100e5576100a8565b366100a857604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b6100b061016d565b005b3480156100be57600080fd5b506100b06100cd3660046108f1565b610187565b6100b06100e036600461090c565b6101d1565b3480156100f157600080fd5b506100fa610245565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b34801561012f57600080fd5b506100fa610283565b34801561014457600080fd5b506100b06101533660046108f1565b61028d565b34801561016457600080fd5b506100fa6102ba565b610175610330565b610185610180610407565b610411565b565b61018f610435565b73ffffffffffffffffffffffffffffffffffffffff1633036101c9576101c681604051806020016040528060008152506000610475565b50565b6101c661016d565b6101d9610435565b73ffffffffffffffffffffffffffffffffffffffff16330361023d576102388383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250610475915050565b505050565b61023861016d565b600061024f610435565b73ffffffffffffffffffffffffffffffffffffffff16330361027857610273610407565b905090565b61028061016d565b90565b6000610273610435565b610295610435565b73ffffffffffffffffffffffffffffffffffffffff1633036101c9576101c6816104a0565b60006102c4610435565b73ffffffffffffffffffffffffffffffffffffffff16330361027857610273610435565b606061030d8383604051806060016040528060278152602001610a2160279139610501565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b610338610435565b73ffffffffffffffffffffffffffffffffffffffff163303610185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760648201527f6574000000000000000000000000000000000000000000000000000000000000608482015260a4015b60405180910390fd5b6000610273610629565b3660008037600080366000845af43d6000803e808015610430573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b5473ffffffffffffffffffffffffffffffffffffffff16919050565b61047e83610651565b60008251118061048b5750805b156102385761049a83836102e8565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6104c9610435565b6040805173ffffffffffffffffffffffffffffffffffffffff928316815291841660208301520160405180910390a16101c68161069e565b606073ffffffffffffffffffffffffffffffffffffffff84163b6105a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e7472616374000000000000000000000000000000000000000000000000000060648201526084016103fe565b6000808573ffffffffffffffffffffffffffffffffffffffff16856040516105cf91906109b3565b600060405180830381855af49150503d806000811461060a576040519150601f19603f3d011682016040523d82523d6000602084013e61060f565b606091505b509150915061061f8282866107aa565b9695505050505050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610459565b61065a816107fd565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b73ffffffffffffffffffffffffffffffffffffffff8116610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103fe565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905550565b606083156107b957508161030d565b8251156107c95782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103fe91906109cf565b73ffffffffffffffffffffffffffffffffffffffff81163b6108a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e74726163740000000000000000000000000000000000000060648201526084016103fe565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610764565b803573ffffffffffffffffffffffffffffffffffffffff811681146108ec57600080fd5b919050565b60006020828403121561090357600080fd5b61030d826108c8565b60008060006040848603121561092157600080fd5b61092a846108c8565b9250602084013567ffffffffffffffff8082111561094757600080fd5b818601915086601f83011261095b57600080fd5b81358181111561096a57600080fd5b87602082850101111561097c57600080fd5b6020830194508093505050509250925092565b60005b838110156109aa578181015183820152602001610992565b50506000910152565b600082516109c581846020870161098f565b9190910192915050565b60208152600082518060208401526109ee81604085016020870161098f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212206c972a61c6678ef1d88bd3c2e6728879ed12dfc433994eabe4e6639e939b819764736f6c63430008110033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122054520ddbd1f1eb1cbf839b2a592500b7ff2a1690f7563bd93a5f5fc9a0c0707c64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b329504622bd79329c6f82cf8c60c807df2090c400000000000000000000000074d2bef5afe200dacc76fe2d3c4022435b54cdbb00000000000000000000000068041721c81c695b72495f78beac4f7dfd7b19c8000000000000000000000000b39e6f93cff9af7011810f41a4ed9b14582019b743094b510fe2b557778dd5ce3d8afb686e919cbf319cabcd4527fa09be51e809
-----Decoded View---------------
Arg [0] : _userDatabase (address): 0xb329504622bd79329c6F82CF8c60c807dF2090c4
Arg [1] : _trustAccountLogic (address): 0x74D2Bef5Afe200DaCC76FE2D3C4022435b54CdbB
Arg [2] : _trustSubAccountLogic (address): 0x68041721C81c695B72495F78BeaC4F7DFD7b19c8
Arg [3] : _timelock (address): 0xb39e6f93cff9Af7011810f41a4ed9b14582019b7
Arg [4] : _trustProxyAdminCodeHash (bytes32): 0x43094b510fe2b557778dd5ce3d8afb686e919cbf319cabcd4527fa09be51e809
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000b329504622bd79329c6f82cf8c60c807df2090c4
Arg [1] : 00000000000000000000000074d2bef5afe200dacc76fe2d3c4022435b54cdbb
Arg [2] : 00000000000000000000000068041721c81c695b72495f78beac4f7dfd7b19c8
Arg [3] : 000000000000000000000000b39e6f93cff9af7011810f41a4ed9b14582019b7
Arg [4] : 43094b510fe2b557778dd5ce3d8afb686e919cbf319cabcd4527fa09be51e809
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.