Polygon Sponsored slots available. Book your slot here!
More Info
Private Name Tags
ContractCreator
Latest 16 from a total of 16 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Revoke Role | 25453120 | 1058 days ago | IN | 0 POL | 0.0011006 | ||||
Revoke Role | 25453100 | 1058 days ago | IN | 0 POL | 0.0011806 | ||||
Grant Role | 25452514 | 1058 days ago | IN | 0 POL | 0.00231556 | ||||
Grant Role | 25452224 | 1058 days ago | IN | 0 POL | 0.00231556 | ||||
Schedule | 25450994 | 1058 days ago | IN | 0 POL | 0.00219448 | ||||
Execute | 24094586 | 1094 days ago | IN | 0 POL | 0.00372473 | ||||
Schedule | 23974331 | 1097 days ago | IN | 0 POL | 0.00458468 | ||||
Schedule | 23551532 | 1108 days ago | IN | 0 POL | 0.00172242 | ||||
Execute | 22007784 | 1148 days ago | IN | 0 POL | 0.00174096 | ||||
Schedule | 21924363 | 1150 days ago | IN | 0 POL | 0.00166479 | ||||
Execute | 20888102 | 1177 days ago | IN | 0 POL | 0.00174132 | ||||
Schedule | 20848151 | 1178 days ago | IN | 0 POL | 0.00166515 | ||||
Cancel | 20847635 | 1178 days ago | IN | 0 POL | 0.00046728 | ||||
Schedule | 20843965 | 1178 days ago | IN | 0 POL | 0.00166515 | ||||
Execute | 20698130 | 1182 days ago | IN | 0 POL | 0.0025341 | ||||
Schedule | 20662319 | 1183 days ago | IN | 0 POL | 0.00172242 |
Loading...
Loading
Contract Name:
TimelockController
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-10-18 */ // SPDX-License-Identifier: UNLICENSED // Sources flattened with hardhat v2.6.4 https://hardhat.org // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File @openzeppelin/contracts/governance/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which acts as a timelocked controller. When set as the * owner of an `Ownable` smart contract, it enforces a timelock on all * `onlyOwner` maintenance operations. This gives time for users of the * controlled contract to exit before a potentially dangerous maintenance * operation is applied. * * By default, this contract is self administered, meaning administration tasks * have to go through the timelock process. The proposer (resp executor) role * is in charge of proposing (resp executing) operations. A common use case is * to position this {TimelockController} as the owner of a smart contract, with * a multisig or a DAO as the sole proposer. * * _Available since v3.3._ */ contract TimelockController is AccessControl { bytes32 public constant TIMELOCK_ADMIN_ROLE = keccak256("TIMELOCK_ADMIN_ROLE"); bytes32 public constant PROPOSER_ROLE = keccak256("PROPOSER_ROLE"); bytes32 public constant EXECUTOR_ROLE = keccak256("EXECUTOR_ROLE"); uint256 internal constant _DONE_TIMESTAMP = uint256(1); mapping(bytes32 => uint256) private _timestamps; uint256 private _minDelay; /** * @dev Emitted when a call is scheduled as part of operation `id`. */ event CallScheduled( bytes32 indexed id, uint256 indexed index, address target, uint256 value, bytes data, bytes32 predecessor, uint256 delay ); /** * @dev Emitted when a call is performed as part of operation `id`. */ event CallExecuted(bytes32 indexed id, uint256 indexed index, address target, uint256 value, bytes data); /** * @dev Emitted when operation `id` is cancelled. */ event Cancelled(bytes32 indexed id); /** * @dev Emitted when the minimum delay for future operations is modified. */ event MinDelayChange(uint256 oldDuration, uint256 newDuration); /** * @dev Initializes the contract with a given `minDelay`. */ constructor( uint256 minDelay, address[] memory proposers, address[] memory executors ) { _setRoleAdmin(TIMELOCK_ADMIN_ROLE, TIMELOCK_ADMIN_ROLE); _setRoleAdmin(PROPOSER_ROLE, TIMELOCK_ADMIN_ROLE); _setRoleAdmin(EXECUTOR_ROLE, TIMELOCK_ADMIN_ROLE); // deployer + self administration _setupRole(TIMELOCK_ADMIN_ROLE, _msgSender()); _setupRole(TIMELOCK_ADMIN_ROLE, address(this)); // register proposers for (uint256 i = 0; i < proposers.length; ++i) { _setupRole(PROPOSER_ROLE, proposers[i]); } // register executors for (uint256 i = 0; i < executors.length; ++i) { _setupRole(EXECUTOR_ROLE, executors[i]); } _minDelay = minDelay; emit MinDelayChange(0, minDelay); } /** * @dev Modifier to make a function callable only by a certain role. In * addition to checking the sender's role, `address(0)` 's role is also * considered. Granting a role to `address(0)` is equivalent to enabling * this role for everyone. */ modifier onlyRoleOrOpenRole(bytes32 role) { if (!hasRole(role, address(0))) { _checkRole(role, _msgSender()); } _; } /** * @dev Contract might receive/hold ETH as part of the maintenance process. */ receive() external payable {} /** * @dev Returns whether an id correspond to a registered operation. This * includes both Pending, Ready and Done operations. */ function isOperation(bytes32 id) public view virtual returns (bool pending) { return getTimestamp(id) > 0; } /** * @dev Returns whether an operation is pending or not. */ function isOperationPending(bytes32 id) public view virtual returns (bool pending) { return getTimestamp(id) > _DONE_TIMESTAMP; } /** * @dev Returns whether an operation is ready or not. */ function isOperationReady(bytes32 id) public view virtual returns (bool ready) { uint256 timestamp = getTimestamp(id); return timestamp > _DONE_TIMESTAMP && timestamp <= block.timestamp; } /** * @dev Returns whether an operation is done or not. */ function isOperationDone(bytes32 id) public view virtual returns (bool done) { return getTimestamp(id) == _DONE_TIMESTAMP; } /** * @dev Returns the timestamp at with an operation becomes ready (0 for * unset operations, 1 for done operations). */ function getTimestamp(bytes32 id) public view virtual returns (uint256 timestamp) { return _timestamps[id]; } /** * @dev Returns the minimum delay for an operation to become valid. * * This value can be changed by executing an operation that calls `updateDelay`. */ function getMinDelay() public view virtual returns (uint256 duration) { return _minDelay; } /** * @dev Returns the identifier of an operation containing a single * transaction. */ function hashOperation( address target, uint256 value, bytes calldata data, bytes32 predecessor, bytes32 salt ) public pure virtual returns (bytes32 hash) { return keccak256(abi.encode(target, value, data, predecessor, salt)); } /** * @dev Returns the identifier of an operation containing a batch of * transactions. */ function hashOperationBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata datas, bytes32 predecessor, bytes32 salt ) public pure virtual returns (bytes32 hash) { return keccak256(abi.encode(targets, values, datas, predecessor, salt)); } /** * @dev Schedule an operation containing a single transaction. * * Emits a {CallScheduled} event. * * Requirements: * * - the caller must have the 'proposer' role. */ function schedule( address target, uint256 value, bytes calldata data, bytes32 predecessor, bytes32 salt, uint256 delay ) public virtual onlyRole(PROPOSER_ROLE) { bytes32 id = hashOperation(target, value, data, predecessor, salt); _schedule(id, delay); emit CallScheduled(id, 0, target, value, data, predecessor, delay); } /** * @dev Schedule an operation containing a batch of transactions. * * Emits one {CallScheduled} event per transaction in the batch. * * Requirements: * * - the caller must have the 'proposer' role. */ function scheduleBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata datas, bytes32 predecessor, bytes32 salt, uint256 delay ) public virtual onlyRole(PROPOSER_ROLE) { require(targets.length == values.length, "TimelockController: length mismatch"); require(targets.length == datas.length, "TimelockController: length mismatch"); bytes32 id = hashOperationBatch(targets, values, datas, predecessor, salt); _schedule(id, delay); for (uint256 i = 0; i < targets.length; ++i) { emit CallScheduled(id, i, targets[i], values[i], datas[i], predecessor, delay); } } /** * @dev Schedule an operation that is to becomes valid after a given delay. */ function _schedule(bytes32 id, uint256 delay) private { require(!isOperation(id), "TimelockController: operation already scheduled"); require(delay >= getMinDelay(), "TimelockController: insufficient delay"); _timestamps[id] = block.timestamp + delay; } /** * @dev Cancel an operation. * * Requirements: * * - the caller must have the 'proposer' role. */ function cancel(bytes32 id) public virtual onlyRole(PROPOSER_ROLE) { require(isOperationPending(id), "TimelockController: operation cannot be cancelled"); delete _timestamps[id]; emit Cancelled(id); } /** * @dev Execute an (ready) operation containing a single transaction. * * Emits a {CallExecuted} event. * * Requirements: * * - the caller must have the 'executor' role. */ function execute( address target, uint256 value, bytes calldata data, bytes32 predecessor, bytes32 salt ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) { bytes32 id = hashOperation(target, value, data, predecessor, salt); _beforeCall(id, predecessor); _call(id, 0, target, value, data); _afterCall(id); } /** * @dev Execute an (ready) operation containing a batch of transactions. * * Emits one {CallExecuted} event per transaction in the batch. * * Requirements: * * - the caller must have the 'executor' role. */ function executeBatch( address[] calldata targets, uint256[] calldata values, bytes[] calldata datas, bytes32 predecessor, bytes32 salt ) public payable virtual onlyRoleOrOpenRole(EXECUTOR_ROLE) { require(targets.length == values.length, "TimelockController: length mismatch"); require(targets.length == datas.length, "TimelockController: length mismatch"); bytes32 id = hashOperationBatch(targets, values, datas, predecessor, salt); _beforeCall(id, predecessor); for (uint256 i = 0; i < targets.length; ++i) { _call(id, i, targets[i], values[i], datas[i]); } _afterCall(id); } /** * @dev Checks before execution of an operation's calls. */ function _beforeCall(bytes32 id, bytes32 predecessor) private view { require(isOperationReady(id), "TimelockController: operation is not ready"); require(predecessor == bytes32(0) || isOperationDone(predecessor), "TimelockController: missing dependency"); } /** * @dev Checks after execution of an operation's calls. */ function _afterCall(bytes32 id) private { require(isOperationReady(id), "TimelockController: operation is not ready"); _timestamps[id] = _DONE_TIMESTAMP; } /** * @dev Execute an operation's call. * * Emits a {CallExecuted} event. */ function _call( bytes32 id, uint256 index, address target, uint256 value, bytes calldata data ) private { (bool success, ) = target.call{value: value}(data); require(success, "TimelockController: underlying transaction reverted"); emit CallExecuted(id, index, target, value, data); } /** * @dev Changes the minimum timelock duration for future operations. * * Emits a {MinDelayChange} event. * * Requirements: * * - the caller must be the timelock itself. This can only be achieved by scheduling and later executing * an operation where the timelock is the target and the data is the ABI-encoded call to this function. */ function updateDelay(uint256 newDelay) external virtual { require(msg.sender == address(this), "TimelockController: caller must be timelock"); emit MinDelayChange(_minDelay, newDelay); _minDelay = newDelay; } } // File contracts/TimelockController.sol pragma solidity ^0.8.0; pragma experimental ABIEncoderV2;
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"minDelay","type":"uint256"},{"internalType":"address[]","name":"proposers","type":"address[]"},{"internalType":"address[]","name":"executors","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"CallExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"},{"indexed":true,"internalType":"uint256","name":"index","type":"uint256"},{"indexed":false,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"},{"indexed":false,"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"delay","type":"uint256"}],"name":"CallScheduled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"Cancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldDuration","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"MinDelayChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROPOSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIMELOCK_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"execute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"datas","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"executeBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getMinDelay","outputs":[{"internalType":"uint256","name":"duration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"getTimestamp","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperation","outputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"datas","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"}],"name":"hashOperationBatch","outputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperation","outputs":[{"internalType":"bool","name":"pending","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationDone","outputs":[{"internalType":"bool","name":"done","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationPending","outputs":[{"internalType":"bool","name":"pending","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"id","type":"bytes32"}],"name":"isOperationReady","outputs":[{"internalType":"bool","name":"ready","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"schedule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"targets","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"},{"internalType":"bytes[]","name":"datas","type":"bytes[]"},{"internalType":"bytes32","name":"predecessor","type":"bytes32"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256","name":"delay","type":"uint256"}],"name":"scheduleBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDelay","type":"uint256"}],"name":"updateDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001e1c38038062001e1c833981016040819052620000349162000394565b6200004f60008051602062001dbc83398151915280620001c9565b6200007960008051602062001ddc83398151915260008051602062001dbc833981519152620001c9565b620000a360008051602062001dfc83398151915260008051602062001dbc833981519152620001c9565b620000be60008051602062001dbc8339815191523362000214565b620000d960008051602062001dbc8339815191523062000214565b60005b825181101562000136576200012360008051602062001ddc8339815191528483815181106200010f576200010f62000432565b60200260200101516200021460201b60201c565b6200012e8162000408565b9050620000dc565b5060005b815181101562000180576200016d60008051602062001dfc8339815191528383815181106200010f576200010f62000432565b620001788162000408565b90506200013a565b5060028390556040805160008152602081018590527f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5910160405180910390a15050506200045e565b600082815260208190526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b62000220828262000224565b5050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000220576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002803390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b80516001600160a01b0381168114620002dc57600080fd5b919050565b600082601f830112620002f357600080fd5b815160206001600160401b038083111562000312576200031262000448565b8260051b604051601f19603f830116810181811084821117156200033a576200033a62000448565b604052848152838101925086840182880185018910156200035a57600080fd5b600092505b8583101562000388576200037381620002c4565b8452928401926001929092019184016200035f565b50979650505050505050565b600080600060608486031215620003aa57600080fd5b835160208501519093506001600160401b0380821115620003ca57600080fd5b620003d887838801620002e1565b93506040860151915080821115620003ef57600080fd5b50620003fe86828701620002e1565b9150509250925092565b60006000198214156200042b57634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61194e806200046e6000396000f3fe60806040526004361061014f5760003560e01c806364d62353116100b6578063b1c5f4271161006f578063b1c5f427146103f3578063c4d252f514610413578063d45c443514610433578063d547741f14610460578063e38335e514610480578063f27a0c921461049357600080fd5b806364d623531461033c5780638065657f1461035c5780638f2a0bb01461037c5780638f61f4f51461039c57806391d14854146103be578063a217fddf146103de57600080fd5b8063248a9ca311610108578063248a9ca31461025b5780632ab0f5291461028b5780632f2ff15d146102bc57806331d50750146102dc57806336568abe146102fc578063584b153e1461031c57600080fd5b806301d5062a1461015b57806301ffc9a71461017d57806307bd0265146101b25780630d3cf6fc146101f4578063134008d31461022857806313bc9f201461023b57600080fd5b3661015657005b600080fd5b34801561016757600080fd5b5061017b610176366004611281565b6104a8565b005b34801561018957600080fd5b5061019d610198366004611496565b61052c565b60405190151581526020015b60405180910390f35b3480156101be57600080fd5b506101e67fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b6040519081526020016101a9565b34801561020057600080fd5b506101e67f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca581565b61017b610236366004611215565b610563565b34801561024757600080fd5b5061019d610256366004611451565b6105db565b34801561026757600080fd5b506101e6610276366004611451565b60009081526020819052604090206001015490565b34801561029757600080fd5b5061019d6102a6366004611451565b6000908152600160208190526040909120541490565b3480156102c857600080fd5b5061017b6102d736600461146a565b610601565b3480156102e857600080fd5b5061019d6102f7366004611451565b61062c565b34801561030857600080fd5b5061017b61031736600461146a565b610645565b34801561032857600080fd5b5061019d610337366004611451565b6106c8565b34801561034857600080fd5b5061017b610357366004611451565b6106de565b34801561036857600080fd5b506101e6610377366004611215565b610782565b34801561038857600080fd5b5061017b61039736600461139f565b6107c1565b3480156103a857600080fd5b506101e66000805160206118f983398151915281565b3480156103ca57600080fd5b5061019d6103d936600461146a565b610902565b3480156103ea57600080fd5b506101e6600081565b3480156103ff57600080fd5b506101e661040e3660046112f6565b61092b565b34801561041f57600080fd5b5061017b61042e366004611451565b610970565b34801561043f57600080fd5b506101e661044e366004611451565b60009081526001602052604090205490565b34801561046c57600080fd5b5061017b61047b36600461146a565b610a34565b61017b61048e3660046112f6565b610a5a565b34801561049f57600080fd5b506002546101e6565b6000805160206118f98339815191526104c18133610b8f565b60006104d1898989898989610782565b90506104dd8184610bf3565b6000817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a6040516105199695949392919061162e565b60405180910390a3505050505050505050565b60006001600160e01b03198216637965db0b60e01b148061055d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6361058f816000610902565b61059d5761059d8133610b8f565b60006105ad888888888888610782565b90506105b98185610ce2565b6105c88160008a8a8a8a610d7e565b6105d181610e92565b5050505050505050565b6000818152600160205260408120546001811180156105fa5750428111155b9392505050565b60008281526020819052604090206001015461061d8133610b8f565b6106278383610ecb565b505050565b60008181526001602052604081205481905b1192915050565b6001600160a01b03811633146106ba5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6106c48282610f4f565b5050565b600081815260016020819052604082205461063e565b3330146107415760405162461bcd60e51b815260206004820152602b60248201527f54696d656c6f636b436f6e74726f6c6c65723a2063616c6c6572206d7573742060448201526a62652074696d656c6f636b60a81b60648201526084016106b1565b60025460408051918252602082018390527f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5910160405180910390a1600255565b600086868686868660405160200161079f9695949392919061162e565b6040516020818303038152906040528051906020012090509695505050505050565b6000805160206118f98339815191526107da8133610b8f565b8887146107f95760405162461bcd60e51b81526004016106b190611749565b8885146108185760405162461bcd60e51b81526004016106b190611749565b600061082a8b8b8b8b8b8b8b8b61092b565b90506108368184610bf3565b60005b8a8110156108f45780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e85818110610876576108766118cc565b905060200201602081019061088b91906111fa565b8d8d8681811061089d5761089d6118cc565b905060200201358c8c878181106108b6576108b66118cc565b90506020028101906108c891906117d6565b8c8b6040516108dc9695949392919061162e565b60405180910390a36108ed8161189b565b9050610839565b505050505050505050505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000888888888888888860405160200161094c98979695949392919061166b565b60405160208183030381529060405280519060200120905098975050505050505050565b6000805160206118f98339815191526109898133610b8f565b610992826106c8565b6109f85760405162461bcd60e51b815260206004820152603160248201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e2063616044820152701b9b9bdd0818994818d85b98d95b1b1959607a1b60648201526084016106b1565b6000828152600160205260408082208290555183917fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7091a25050565b600082815260208190526040902060010154610a508133610b8f565b6106278383610f4f565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610a86816000610902565b610a9457610a948133610b8f565b878614610ab35760405162461bcd60e51b81526004016106b190611749565b878414610ad25760405162461bcd60e51b81526004016106b190611749565b6000610ae48a8a8a8a8a8a8a8a61092b565b9050610af08185610ce2565b60005b89811015610b7957610b6982828d8d85818110610b1257610b126118cc565b9050602002016020810190610b2791906111fa565b8c8c86818110610b3957610b396118cc565b905060200201358b8b87818110610b5257610b526118cc565b9050602002810190610b6491906117d6565b610d7e565b610b728161189b565b9050610af3565b50610b8381610e92565b50505050505050505050565b610b998282610902565b6106c457610bb1816001600160a01b03166014610fb4565b610bbc836020610fb4565b604051602001610bcd929190611587565b60408051601f198184030181529082905262461bcd60e51b82526106b191600401611716565b610bfc8261062c565b15610c615760405162461bcd60e51b815260206004820152602f60248201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20616c60448201526e1c9958591e481cd8da19591d5b1959608a1b60648201526084016106b1565b600254811015610cc25760405162461bcd60e51b815260206004820152602660248201527f54696d656c6f636b436f6e74726f6c6c65723a20696e73756666696369656e746044820152652064656c617960d01b60648201526084016106b1565b610ccc814261181d565b6000928352600160205260409092209190915550565b610ceb826105db565b610d075760405162461bcd60e51b81526004016106b19061178c565b801580610d235750600081815260016020819052604090912054145b6106c45760405162461bcd60e51b815260206004820152602660248201527f54696d656c6f636b436f6e74726f6c6c65723a206d697373696e6720646570656044820152656e64656e637960d01b60648201526084016106b1565b6000846001600160a01b0316848484604051610d9b929190611577565b60006040518083038185875af1925050503d8060008114610dd8576040519150601f19603f3d011682016040523d82523d6000602084013e610ddd565b606091505b5050905080610e4a5760405162461bcd60e51b815260206004820152603360248201527f54696d656c6f636b436f6e74726f6c6c65723a20756e6465726c79696e6720746044820152721c985b9cd858dd1a5bdb881c995d995c9d1959606a1b60648201526084016106b1565b85877fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b5887878787604051610e8194939291906115fc565b60405180910390a350505050505050565b610e9b816105db565b610eb75760405162461bcd60e51b81526004016106b19061178c565b600090815260016020819052604090912055565b610ed58282610902565b6106c4576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610f0b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610f598282610902565b156106c4576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60606000610fc3836002611835565b610fce90600261181d565b67ffffffffffffffff811115610fe657610fe66118e2565b6040519080825280601f01601f191660200182016040528015611010576020820181803683370190505b509050600360fc1b8160008151811061102b5761102b6118cc565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061105a5761105a6118cc565b60200101906001600160f81b031916908160001a905350600061107e846002611835565b61108990600161181d565b90505b6001811115611101576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106110bd576110bd6118cc565b1a60f81b8282815181106110d3576110d36118cc565b60200101906001600160f81b031916908160001a90535060049490941c936110fa81611884565b905061108c565b5083156105fa5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106b1565b80356001600160a01b038116811461116757600080fd5b919050565b60008083601f84011261117e57600080fd5b50813567ffffffffffffffff81111561119657600080fd5b6020830191508360208260051b85010111156111b157600080fd5b9250929050565b60008083601f8401126111ca57600080fd5b50813567ffffffffffffffff8111156111e257600080fd5b6020830191508360208285010111156111b157600080fd5b60006020828403121561120c57600080fd5b6105fa82611150565b60008060008060008060a0878903121561122e57600080fd5b61123787611150565b955060208701359450604087013567ffffffffffffffff81111561125a57600080fd5b61126689828a016111b8565b979a9699509760608101359660809091013595509350505050565b600080600080600080600060c0888a03121561129c57600080fd5b6112a588611150565b965060208801359550604088013567ffffffffffffffff8111156112c857600080fd5b6112d48a828b016111b8565b989b979a50986060810135976080820135975060a09091013595509350505050565b60008060008060008060008060a0898b03121561131257600080fd5b883567ffffffffffffffff8082111561132a57600080fd5b6113368c838d0161116c565b909a50985060208b013591508082111561134f57600080fd5b61135b8c838d0161116c565b909850965060408b013591508082111561137457600080fd5b506113818b828c0161116c565b999c989b509699959896976060870135966080013595509350505050565b600080600080600080600080600060c08a8c0312156113bd57600080fd5b893567ffffffffffffffff808211156113d557600080fd5b6113e18d838e0161116c565b909b50995060208c01359150808211156113fa57600080fd5b6114068d838e0161116c565b909950975060408c013591508082111561141f57600080fd5b5061142c8c828d0161116c565b9a9d999c50979a969997986060880135976080810135975060a0013595509350505050565b60006020828403121561146357600080fd5b5035919050565b6000806040838503121561147d57600080fd5b8235915061148d60208401611150565b90509250929050565b6000602082840312156114a857600080fd5b81356001600160e01b0319811681146105fa57600080fd5b818352600060208085019450848460051b86018460005b878110156115415783830389528135601e198836030181126114f857600080fd5b8701803567ffffffffffffffff81111561151157600080fd5b80360389131561152057600080fd5b61152d858289850161154e565b9a87019a94505050908401906001016114d7565b5090979650505050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b8183823760009101908152919050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516115bf816017850160208801611854565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516115f0816028840160208801611854565b01602801949350505050565b60018060a01b038516815283602082015260606040820152600061162460608301848661154e565b9695505050505050565b60018060a01b038716815285602082015260a06040820152600061165660a08301868861154e565b60608301949094525060800152949350505050565b60a0808252810188905260008960c08301825b8b8110156116ac576001600160a01b0361169784611150565b1682526020928301929091019060010161167e565b5083810360208501528881526001600160fb1b038911156116cc57600080fd5b8860051b9150818a6020830137818101915050602081016000815260208483030160408501526116fd81888a6114c0565b6060850196909652505050608001529695505050505050565b6020815260008251806020840152611735816040850160208701611854565b601f01601f19169190910160400192915050565b60208082526023908201527f54696d656c6f636b436f6e74726f6c6c65723a206c656e677468206d69736d616040820152620e8c6d60eb1b606082015260800190565b6020808252602a908201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e206973604082015269206e6f7420726561647960b01b606082015260800190565b6000808335601e198436030181126117ed57600080fd5b83018035915067ffffffffffffffff82111561180857600080fd5b6020019150368190038213156111b157600080fd5b60008219821115611830576118306118b6565b500190565b600081600019048311821515161561184f5761184f6118b6565b500290565b60005b8381101561186f578181015183820152602001611857565b8381111561187e576000848401525b50505050565b600081611893576118936118b6565b506000190190565b60006000198214156118af576118af6118b6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfeb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1a2646970667358221220cad393987677c0088e17f439205ef86e41e86383fff5ae47913449595d466c3464736f6c634300080700335f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5b09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1d8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e630000000000000000000000000000000000000000000000000000000000015180000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000077777eef36045851c3e1832ac0815d0c894ce09f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000077777eef36045851c3e1832ac0815d0c894ce09f
Deployed Bytecode
0x60806040526004361061014f5760003560e01c806364d62353116100b6578063b1c5f4271161006f578063b1c5f427146103f3578063c4d252f514610413578063d45c443514610433578063d547741f14610460578063e38335e514610480578063f27a0c921461049357600080fd5b806364d623531461033c5780638065657f1461035c5780638f2a0bb01461037c5780638f61f4f51461039c57806391d14854146103be578063a217fddf146103de57600080fd5b8063248a9ca311610108578063248a9ca31461025b5780632ab0f5291461028b5780632f2ff15d146102bc57806331d50750146102dc57806336568abe146102fc578063584b153e1461031c57600080fd5b806301d5062a1461015b57806301ffc9a71461017d57806307bd0265146101b25780630d3cf6fc146101f4578063134008d31461022857806313bc9f201461023b57600080fd5b3661015657005b600080fd5b34801561016757600080fd5b5061017b610176366004611281565b6104a8565b005b34801561018957600080fd5b5061019d610198366004611496565b61052c565b60405190151581526020015b60405180910390f35b3480156101be57600080fd5b506101e67fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b6040519081526020016101a9565b34801561020057600080fd5b506101e67f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca581565b61017b610236366004611215565b610563565b34801561024757600080fd5b5061019d610256366004611451565b6105db565b34801561026757600080fd5b506101e6610276366004611451565b60009081526020819052604090206001015490565b34801561029757600080fd5b5061019d6102a6366004611451565b6000908152600160208190526040909120541490565b3480156102c857600080fd5b5061017b6102d736600461146a565b610601565b3480156102e857600080fd5b5061019d6102f7366004611451565b61062c565b34801561030857600080fd5b5061017b61031736600461146a565b610645565b34801561032857600080fd5b5061019d610337366004611451565b6106c8565b34801561034857600080fd5b5061017b610357366004611451565b6106de565b34801561036857600080fd5b506101e6610377366004611215565b610782565b34801561038857600080fd5b5061017b61039736600461139f565b6107c1565b3480156103a857600080fd5b506101e66000805160206118f983398151915281565b3480156103ca57600080fd5b5061019d6103d936600461146a565b610902565b3480156103ea57600080fd5b506101e6600081565b3480156103ff57600080fd5b506101e661040e3660046112f6565b61092b565b34801561041f57600080fd5b5061017b61042e366004611451565b610970565b34801561043f57600080fd5b506101e661044e366004611451565b60009081526001602052604090205490565b34801561046c57600080fd5b5061017b61047b36600461146a565b610a34565b61017b61048e3660046112f6565b610a5a565b34801561049f57600080fd5b506002546101e6565b6000805160206118f98339815191526104c18133610b8f565b60006104d1898989898989610782565b90506104dd8184610bf3565b6000817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a6040516105199695949392919061162e565b60405180910390a3505050505050505050565b60006001600160e01b03198216637965db0b60e01b148061055d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6361058f816000610902565b61059d5761059d8133610b8f565b60006105ad888888888888610782565b90506105b98185610ce2565b6105c88160008a8a8a8a610d7e565b6105d181610e92565b5050505050505050565b6000818152600160205260408120546001811180156105fa5750428111155b9392505050565b60008281526020819052604090206001015461061d8133610b8f565b6106278383610ecb565b505050565b60008181526001602052604081205481905b1192915050565b6001600160a01b03811633146106ba5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b6106c48282610f4f565b5050565b600081815260016020819052604082205461063e565b3330146107415760405162461bcd60e51b815260206004820152602b60248201527f54696d656c6f636b436f6e74726f6c6c65723a2063616c6c6572206d7573742060448201526a62652074696d656c6f636b60a81b60648201526084016106b1565b60025460408051918252602082018390527f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5910160405180910390a1600255565b600086868686868660405160200161079f9695949392919061162e565b6040516020818303038152906040528051906020012090509695505050505050565b6000805160206118f98339815191526107da8133610b8f565b8887146107f95760405162461bcd60e51b81526004016106b190611749565b8885146108185760405162461bcd60e51b81526004016106b190611749565b600061082a8b8b8b8b8b8b8b8b61092b565b90506108368184610bf3565b60005b8a8110156108f45780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e85818110610876576108766118cc565b905060200201602081019061088b91906111fa565b8d8d8681811061089d5761089d6118cc565b905060200201358c8c878181106108b6576108b66118cc565b90506020028101906108c891906117d6565b8c8b6040516108dc9695949392919061162e565b60405180910390a36108ed8161189b565b9050610839565b505050505050505050505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6000888888888888888860405160200161094c98979695949392919061166b565b60405160208183030381529060405280519060200120905098975050505050505050565b6000805160206118f98339815191526109898133610b8f565b610992826106c8565b6109f85760405162461bcd60e51b815260206004820152603160248201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e2063616044820152701b9b9bdd0818994818d85b98d95b1b1959607a1b60648201526084016106b1565b6000828152600160205260408082208290555183917fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7091a25050565b600082815260208190526040902060010154610a508133610b8f565b6106278383610f4f565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610a86816000610902565b610a9457610a948133610b8f565b878614610ab35760405162461bcd60e51b81526004016106b190611749565b878414610ad25760405162461bcd60e51b81526004016106b190611749565b6000610ae48a8a8a8a8a8a8a8a61092b565b9050610af08185610ce2565b60005b89811015610b7957610b6982828d8d85818110610b1257610b126118cc565b9050602002016020810190610b2791906111fa565b8c8c86818110610b3957610b396118cc565b905060200201358b8b87818110610b5257610b526118cc565b9050602002810190610b6491906117d6565b610d7e565b610b728161189b565b9050610af3565b50610b8381610e92565b50505050505050505050565b610b998282610902565b6106c457610bb1816001600160a01b03166014610fb4565b610bbc836020610fb4565b604051602001610bcd929190611587565b60408051601f198184030181529082905262461bcd60e51b82526106b191600401611716565b610bfc8261062c565b15610c615760405162461bcd60e51b815260206004820152602f60248201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20616c60448201526e1c9958591e481cd8da19591d5b1959608a1b60648201526084016106b1565b600254811015610cc25760405162461bcd60e51b815260206004820152602660248201527f54696d656c6f636b436f6e74726f6c6c65723a20696e73756666696369656e746044820152652064656c617960d01b60648201526084016106b1565b610ccc814261181d565b6000928352600160205260409092209190915550565b610ceb826105db565b610d075760405162461bcd60e51b81526004016106b19061178c565b801580610d235750600081815260016020819052604090912054145b6106c45760405162461bcd60e51b815260206004820152602660248201527f54696d656c6f636b436f6e74726f6c6c65723a206d697373696e6720646570656044820152656e64656e637960d01b60648201526084016106b1565b6000846001600160a01b0316848484604051610d9b929190611577565b60006040518083038185875af1925050503d8060008114610dd8576040519150601f19603f3d011682016040523d82523d6000602084013e610ddd565b606091505b5050905080610e4a5760405162461bcd60e51b815260206004820152603360248201527f54696d656c6f636b436f6e74726f6c6c65723a20756e6465726c79696e6720746044820152721c985b9cd858dd1a5bdb881c995d995c9d1959606a1b60648201526084016106b1565b85877fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b5887878787604051610e8194939291906115fc565b60405180910390a350505050505050565b610e9b816105db565b610eb75760405162461bcd60e51b81526004016106b19061178c565b600090815260016020819052604090912055565b610ed58282610902565b6106c4576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055610f0b3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610f598282610902565b156106c4576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60606000610fc3836002611835565b610fce90600261181d565b67ffffffffffffffff811115610fe657610fe66118e2565b6040519080825280601f01601f191660200182016040528015611010576020820181803683370190505b509050600360fc1b8160008151811061102b5761102b6118cc565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061105a5761105a6118cc565b60200101906001600160f81b031916908160001a905350600061107e846002611835565b61108990600161181d565b90505b6001811115611101576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106110bd576110bd6118cc565b1a60f81b8282815181106110d3576110d36118cc565b60200101906001600160f81b031916908160001a90535060049490941c936110fa81611884565b905061108c565b5083156105fa5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016106b1565b80356001600160a01b038116811461116757600080fd5b919050565b60008083601f84011261117e57600080fd5b50813567ffffffffffffffff81111561119657600080fd5b6020830191508360208260051b85010111156111b157600080fd5b9250929050565b60008083601f8401126111ca57600080fd5b50813567ffffffffffffffff8111156111e257600080fd5b6020830191508360208285010111156111b157600080fd5b60006020828403121561120c57600080fd5b6105fa82611150565b60008060008060008060a0878903121561122e57600080fd5b61123787611150565b955060208701359450604087013567ffffffffffffffff81111561125a57600080fd5b61126689828a016111b8565b979a9699509760608101359660809091013595509350505050565b600080600080600080600060c0888a03121561129c57600080fd5b6112a588611150565b965060208801359550604088013567ffffffffffffffff8111156112c857600080fd5b6112d48a828b016111b8565b989b979a50986060810135976080820135975060a09091013595509350505050565b60008060008060008060008060a0898b03121561131257600080fd5b883567ffffffffffffffff8082111561132a57600080fd5b6113368c838d0161116c565b909a50985060208b013591508082111561134f57600080fd5b61135b8c838d0161116c565b909850965060408b013591508082111561137457600080fd5b506113818b828c0161116c565b999c989b509699959896976060870135966080013595509350505050565b600080600080600080600080600060c08a8c0312156113bd57600080fd5b893567ffffffffffffffff808211156113d557600080fd5b6113e18d838e0161116c565b909b50995060208c01359150808211156113fa57600080fd5b6114068d838e0161116c565b909950975060408c013591508082111561141f57600080fd5b5061142c8c828d0161116c565b9a9d999c50979a969997986060880135976080810135975060a0013595509350505050565b60006020828403121561146357600080fd5b5035919050565b6000806040838503121561147d57600080fd5b8235915061148d60208401611150565b90509250929050565b6000602082840312156114a857600080fd5b81356001600160e01b0319811681146105fa57600080fd5b818352600060208085019450848460051b86018460005b878110156115415783830389528135601e198836030181126114f857600080fd5b8701803567ffffffffffffffff81111561151157600080fd5b80360389131561152057600080fd5b61152d858289850161154e565b9a87019a94505050908401906001016114d7565b5090979650505050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b8183823760009101908152919050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516115bf816017850160208801611854565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516115f0816028840160208801611854565b01602801949350505050565b60018060a01b038516815283602082015260606040820152600061162460608301848661154e565b9695505050505050565b60018060a01b038716815285602082015260a06040820152600061165660a08301868861154e565b60608301949094525060800152949350505050565b60a0808252810188905260008960c08301825b8b8110156116ac576001600160a01b0361169784611150565b1682526020928301929091019060010161167e565b5083810360208501528881526001600160fb1b038911156116cc57600080fd5b8860051b9150818a6020830137818101915050602081016000815260208483030160408501526116fd81888a6114c0565b6060850196909652505050608001529695505050505050565b6020815260008251806020840152611735816040850160208701611854565b601f01601f19169190910160400192915050565b60208082526023908201527f54696d656c6f636b436f6e74726f6c6c65723a206c656e677468206d69736d616040820152620e8c6d60eb1b606082015260800190565b6020808252602a908201527f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e206973604082015269206e6f7420726561647960b01b606082015260800190565b6000808335601e198436030181126117ed57600080fd5b83018035915067ffffffffffffffff82111561180857600080fd5b6020019150368190038213156111b157600080fd5b60008219821115611830576118306118b6565b500190565b600081600019048311821515161561184f5761184f6118b6565b500290565b60005b8381101561186f578181015183820152602001611857565b8381111561187e576000848401525b50505050565b600081611893576118936118b6565b506000190190565b60006000198214156118af576118af6118b6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfeb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1a2646970667358221220cad393987677c0088e17f439205ef86e41e86383fff5ae47913449595d466c3464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000015180000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000100000000000000000000000077777eef36045851c3e1832ac0815d0c894ce09f000000000000000000000000000000000000000000000000000000000000000100000000000000000000000077777eef36045851c3e1832ac0815d0c894ce09f
-----Decoded View---------------
Arg [0] : minDelay (uint256): 86400
Arg [1] : proposers (address[]): 0x77777EEf36045851c3E1832AC0815D0C894cE09f
Arg [2] : executors (address[]): 0x77777EEf36045851c3E1832AC0815D0C894cE09f
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000015180
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 00000000000000000000000077777eef36045851c3e1832ac0815d0c894ce09f
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000077777eef36045851c3e1832ac0815d0c894ce09f
Deployed Bytecode Sourcemap
15816:11016:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21275:413;;;;;;;;;;-1:-1:-1;21275:413:0;;;;;:::i;:::-;;:::i;:::-;;10348:204;;;;;;;;;;-1:-1:-1;10348:204:0;;;;;:::i;:::-;;:::i;:::-;;;11508:14:1;;11501:22;11483:41;;11471:2;11456:18;10348:204:0;;;;;;;;16026:66;;;;;;;;;;;;16066:26;16026:66;;;;;11681:25:1;;;11669:2;11654:18;16026:66:0;11535:177:1;15868:78:0;;;;;;;;;;;;15914:32;15868:78;;23683:406;;;;;;:::i;:::-;;:::i;19177:211::-;;;;;;;;;;-1:-1:-1;19177:211:0;;;;;:::i;:::-;;:::i;11759:123::-;;;;;;;;;;-1:-1:-1;11759:123:0;;;;;:::i;:::-;11825:7;11852:12;;;;;;;;;;:22;;;;11759:123;19472:138;;;;;;;;;;-1:-1:-1;19472:138:0;;;;;:::i;:::-;19538:9;19863:15;;;16151:1;19863:15;;;;;;;;;19567:35;;19472:138;12144:147;;;;;;;;;;-1:-1:-1;12144:147:0;;;;;:::i;:::-;;:::i;18740:122::-;;;;;;;;;;-1:-1:-1;18740:122:0;;;;;:::i;:::-;;:::i;13192:218::-;;;;;;;;;;-1:-1:-1;13192:218:0;;;;;:::i;:::-;;:::i;18949:143::-;;;;;;;;;;-1:-1:-1;18949:143:0;;;;;:::i;:::-;;:::i;26589:240::-;;;;;;;;;;-1:-1:-1;26589:240:0;;;;;:::i;:::-;;:::i;20303:292::-;;;;;;;;;;-1:-1:-1;20303:292:0;;;;;:::i;:::-;;:::i;21953:717::-;;;;;;;;;;-1:-1:-1;21953:717:0;;;;;:::i;:::-;;:::i;15953:66::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15953:66:0;;10644:139;;;;;;;;;;-1:-1:-1;10644:139:0;;;;;:::i;:::-;;:::i;9735:49::-;;;;;;;;;;-1:-1:-1;9735:49:0;9780:4;9735:49;;20717:327;;;;;;;;;;-1:-1:-1;20717:327:0;;;;;:::i;:::-;;:::i;23212:234::-;;;;;;;;;;-1:-1:-1;23212:234:0;;;;;:::i;:::-;;:::i;19763:123::-;;;;;;;;;;-1:-1:-1;19763:123:0;;;;;:::i;:::-;19826:17;19863:15;;;:11;:15;;;;;;;19763:123;12536:149;;;;;;;;;;-1:-1:-1;12536:149:0;;;;;:::i;:::-;;:::i;24360:710::-;;;;;;:::i;:::-;;:::i;20079:105::-;;;;;;;;;;-1:-1:-1;20167:9:0;;20079:105;;21275:413;-1:-1:-1;;;;;;;;;;;10226:30:0;15993:26;3798:10;10226;:30::i;:::-;21506:10:::1;21519:53;21533:6;21541:5;21548:4;;21554:11;21567:4;21519:13;:53::i;:::-;21506:66;;21583:20;21593:2;21597:5;21583:9;:20::i;:::-;21637:1;21633:2;21619:61;21640:6;21648:5;21655:4;;21661:11;21674:5;21619:61;;;;;;;;;;;:::i;:::-;;;;;;;;21495:193;21275:413:::0;;;;;;;;:::o;10348:204::-;10433:4;-1:-1:-1;;;;;;10457:47:0;;-1:-1:-1;;;10457:47:0;;:87;;-1:-1:-1;;;;;;;;;;7774:40:0;;;10508:36;10450:94;10348:204;-1:-1:-1;;10348:204:0:o;23683:406::-;16066:26;18339:25;18347:4;18361:1;18339:7;:25::i;:::-;18334:89;;18381:30;18392:4;3798:10;10226;:30::i;18381:::-;23907:10:::1;23920:53;23934:6;23942:5;23949:4;;23955:11;23968:4;23920:13;:53::i;:::-;23907:66;;23984:28;23996:2;24000:11;23984;:28::i;:::-;24023:33;24029:2;24033:1;24036:6;24044:5;24051:4;;24023:5;:33::i;:::-;24067:14;24078:2;24067:10;:14::i;:::-;23896:193;23683:406:::0;;;;;;;:::o;19177:211::-;19244:10;19863:15;;;:11;:15;;;;;;16151:1;19321:9;:27;:59;;;;;19365:15;19352:9;:28;;19321:59;19314:66;19177:211;-1:-1:-1;;;19177:211:0:o;12144:147::-;11825:7;11852:12;;;;;;;;;;:22;;;10226:30;10237:4;3798:10;10226;:30::i;:::-;12258:25:::1;12269:4;12275:7;12258:10;:25::i;:::-;12144:147:::0;;;:::o;18740:122::-;18802:12;19863:15;;;:11;:15;;;;;;18802:12;;18834:16;:20;;18740:122;-1:-1:-1;;18740:122:0:o;13192:218::-;-1:-1:-1;;;;;13288:23:0;;3798:10;13288:23;13280:83;;;;-1:-1:-1;;;13280:83:0;;15543:2:1;13280:83:0;;;15525:21:1;15582:2;15562:18;;;15555:30;15621:34;15601:18;;;15594:62;-1:-1:-1;;;15672:18:1;;;15665:45;15727:19;;13280:83:0;;;;;;;;;13376:26;13388:4;13394:7;13376:11;:26::i;:::-;13192:218;;:::o;18949:143::-;19018:12;19863:15;;;16151:1;19863:15;;;;;;;;19050:16;19763:123;26589:240;26664:10;26686:4;26664:27;26656:83;;;;-1:-1:-1;;;26656:83:0;;15131:2:1;26656:83:0;;;15113:21:1;15170:2;15150:18;;;15143:30;15209:34;15189:18;;;15182:62;-1:-1:-1;;;15260:18:1;;;15253:41;15311:19;;26656:83:0;14929:407:1;26656:83:0;26770:9;;26755:35;;;16533:25:1;;;16589:2;16574:18;;16567:34;;;26755:35:0;;16506:18:1;26755:35:0;;;;;;;26801:9;:20;26589:240::o;20303:292::-;20494:12;20547:6;20555:5;20562:4;;20568:11;20581:4;20536:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20526:61;;;;;;20519:68;;20303:292;;;;;;;;:::o;21953:717::-;-1:-1:-1;;;;;;;;;;;10226:30:0;15993:26;3798:10;10226;:30::i;:::-;22224:31;;::::1;22216:79;;;;-1:-1:-1::0;;;22216:79:0::1;;;;;;;:::i;:::-;22314:30:::0;;::::1;22306:78;;;;-1:-1:-1::0;;;22306:78:0::1;;;;;;;:::i;:::-;22397:10;22410:61;22429:7;;22438:6;;22446:5;;22453:11;22466:4;22410:18;:61::i;:::-;22397:74;;22482:20;22492:2;22496:5;22482:9;:20::i;:::-;22518:9;22513:150;22533:18:::0;;::::1;22513:150;;;22596:1;22592:2;22578:73;22599:7;;22607:1;22599:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;22611:6;;22618:1;22611:9;;;;;;;:::i;:::-;;;;;;;22622:5;;22628:1;22622:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;22632:11;22645:5;22578:73;;;;;;;;;;;:::i;:::-;;;;;;;;22553:3;::::0;::::1;:::i;:::-;;;22513:150;;;;22205:465;21953:717:::0;;;;;;;;;;:::o;10644:139::-;10722:4;10746:12;;;;;;;;;;;-1:-1:-1;;;;;10746:29:0;;;;;;;;;;;;;;;10644:139::o;20717:327::-;20940:12;20993:7;;21002:6;;21010:5;;21017:11;21030:4;20982:53;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20972:64;;;;;;20965:71;;20717:327;;;;;;;;;;:::o;23212:234::-;-1:-1:-1;;;;;;;;;;;10226:30:0;15993:26;3798:10;10226;:30::i;:::-;23298:22:::1;23317:2;23298:18;:22::i;:::-;23290:84;;;::::0;-1:-1:-1;;;23290:84:0;;14713:2:1;23290:84:0::1;::::0;::::1;14695:21:1::0;14752:2;14732:18;;;14725:30;14791:34;14771:18;;;14764:62;-1:-1:-1;;;14842:18:1;;;14835:47;14899:19;;23290:84:0::1;14511:413:1::0;23290:84:0::1;23392:15;::::0;;;:11:::1;:15;::::0;;;;;23385:22;;;23425:13;23404:2;;23425:13:::1;::::0;::::1;23212:234:::0;;:::o;12536:149::-;11825:7;11852:12;;;;;;;;;;:22;;;10226:30;10237:4;3798:10;10226;:30::i;:::-;12651:26:::1;12663:4;12669:7;12651:11;:26::i;24360:710::-:0;16066:26;18339:25;18347:4;18361:1;18339:7;:25::i;:::-;18334:89;;18381:30;18392:4;3798:10;10226;:30::i;18381:::-;24624:31;;::::1;24616:79;;;;-1:-1:-1::0;;;24616:79:0::1;;;;;;;:::i;:::-;24714:30:::0;;::::1;24706:78;;;;-1:-1:-1::0;;;24706:78:0::1;;;;;;;:::i;:::-;24797:10;24810:61;24829:7;;24838:6;;24846:5;;24853:11;24866:4;24810:18;:61::i;:::-;24797:74;;24882:28;24894:2;24898:11;24882;:28::i;:::-;24926:9;24921:117;24941:18:::0;;::::1;24921:117;;;24981:45;24987:2;24991:1;24994:7;;25002:1;24994:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;25006:6;;25013:1;25006:9;;;;;;;:::i;:::-;;;;;;;25017:5;;25023:1;25017:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;24981:5;:45::i;:::-;24961:3;::::0;::::1;:::i;:::-;;;24921:117;;;;25048:14;25059:2;25048:10;:14::i;:::-;24605:465;24360:710:::0;;;;;;;;;:::o;11073:497::-;11154:22;11162:4;11168:7;11154;:22::i;:::-;11149:414;;11342:41;11370:7;-1:-1:-1;;;;;11342:41:0;11380:2;11342:19;:41::i;:::-;11456:38;11484:4;11491:2;11456:19;:38::i;:::-;11247:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;11247:270:0;;;;;;;;;;-1:-1:-1;;;11193:358:0;;;;;;;:::i;22777:285::-;22851:15;22863:2;22851:11;:15::i;:::-;22850:16;22842:76;;;;-1:-1:-1;;;22842:76:0;;13886:2:1;22842:76:0;;;13868:21:1;13925:2;13905:18;;;13898:30;13964:34;13944:18;;;13937:62;-1:-1:-1;;;14015:18:1;;;14008:45;14070:19;;22842:76:0;13684:411:1;22842:76:0;20167:9;;22937:5;:22;;22929:73;;;;-1:-1:-1;;;22929:73:0;;13479:2:1;22929:73:0;;;13461:21:1;13518:2;13498:18;;;13491:30;13557:34;13537:18;;;13530:62;-1:-1:-1;;;13608:18:1;;;13601:36;13654:19;;22929:73:0;13277:402:1;22929:73:0;23031:23;23049:5;23031:15;:23;:::i;:::-;23013:15;;;;:11;:15;;;;;;:41;;;;-1:-1:-1;22777:285:0:o;25158:280::-;25244:20;25261:2;25244:16;:20::i;:::-;25236:75;;;;-1:-1:-1;;;25236:75:0;;;;;;;:::i;:::-;25330:25;;;:57;;-1:-1:-1;19538:9:0;19863:15;;;16151:1;19863:15;;;;;;;;;19567:35;25359:28;25322:108;;;;-1:-1:-1;;;25322:108:0;;12668:2:1;25322:108:0;;;12650:21:1;12707:2;12687:18;;;12680:30;12746:34;12726:18;;;12719:62;-1:-1:-1;;;12797:18:1;;;12790:36;12843:19;;25322:108:0;12466:402:1;25817:367:0;25983:12;26001:6;-1:-1:-1;;;;;26001:11:0;26020:5;26027:4;;26001:31;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25982:50;;;26051:7;26043:71;;;;-1:-1:-1;;;26043:71:0;;15959:2:1;26043:71:0;;;15941:21:1;15998:2;15978:18;;;15971:30;16037:34;16017:18;;;16010:62;-1:-1:-1;;;16088:18:1;;;16081:49;16147:19;;26043:71:0;15757:415:1;26043:71:0;26149:5;26145:2;26132:44;26156:6;26164:5;26171:4;;26132:44;;;;;;;;;:::i;:::-;;;;;;;;25971:213;25817:367;;;;;;:::o;25525:178::-;25584:20;25601:2;25584:16;:20::i;:::-;25576:75;;;;-1:-1:-1;;;25576:75:0;;;;;;;:::i;:::-;25662:15;;;;16151:1;25662:15;;;;;;;;:33;25525:178::o;14496:229::-;14571:22;14579:4;14585:7;14571;:22::i;:::-;14566:152;;14610:6;:12;;;;;;;;;;;-1:-1:-1;;;;;14610:29:0;;;;;;;;;:36;;-1:-1:-1;;14610:36:0;14642:4;14610:36;;;14693:12;3798:10;;3718:98;14693:12;-1:-1:-1;;;;;14666:40:0;14684:7;-1:-1:-1;;;;;14666:40:0;14678:4;14666:40;;;;;;;;;;14496:229;;:::o;14733:230::-;14808:22;14816:4;14822:7;14808;:22::i;:::-;14804:152;;;14879:5;14847:12;;;;;;;;;;;-1:-1:-1;;;;;14847:29:0;;;;;;;;;;:37;;-1:-1:-1;;14847:37:0;;;14904:40;3798:10;;14847:12;;14904:40;;14879:5;14904:40;14733:230;;:::o;5550:451::-;5625:13;5651:19;5683:10;5687:6;5683:1;:10;:::i;:::-;:14;;5696:1;5683:14;:::i;:::-;5673:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5673:25:0;;5651:47;;-1:-1:-1;;;5709:6:0;5716:1;5709:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;5709:15:0;;;;;;;;;-1:-1:-1;;;5735:6:0;5742:1;5735:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;5735:15:0;;;;;;;;-1:-1:-1;5766:9:0;5778:10;5782:6;5778:1;:10;:::i;:::-;:14;;5791:1;5778:14;:::i;:::-;5766:26;;5761:135;5798:1;5794;:5;5761:135;;;-1:-1:-1;;;5846:5:0;5854:3;5846:11;5833:25;;;;;;;:::i;:::-;;;;5821:6;5828:1;5821:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;5821:37:0;;;;;;;;-1:-1:-1;5883:1:0;5873:11;;;;;5801:3;;;:::i;:::-;;;5761:135;;;-1:-1:-1;5914:10:0;;5906:55;;;;-1:-1:-1;;;5906:55:0;;12307:2:1;5906:55:0;;;12289:21:1;;;12326:18;;;12319:30;12385:34;12365:18;;;12358:62;12437:18;;5906:55:0;12105:356:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:367::-;255:8;265:6;319:3;312:4;304:6;300:17;296:27;286:55;;337:1;334;327:12;286:55;-1:-1:-1;360:20:1;;403:18;392:30;;389:50;;;435:1;432;425:12;389:50;472:4;464:6;460:17;448:29;;532:3;525:4;515:6;512:1;508:14;500:6;496:27;492:38;489:47;486:67;;;549:1;546;539:12;486:67;192:367;;;;;:::o;564:347::-;615:8;625:6;679:3;672:4;664:6;660:17;656:27;646:55;;697:1;694;687:12;646:55;-1:-1:-1;720:20:1;;763:18;752:30;;749:50;;;795:1;792;785:12;749:50;832:4;824:6;820:17;808:29;;884:3;877:4;868:6;860;856:19;852:30;849:39;846:59;;;901:1;898;891:12;916:186;975:6;1028:2;1016:9;1007:7;1003:23;999:32;996:52;;;1044:1;1041;1034:12;996:52;1067:29;1086:9;1067:29;:::i;1107:689::-;1213:6;1221;1229;1237;1245;1253;1306:3;1294:9;1285:7;1281:23;1277:33;1274:53;;;1323:1;1320;1313:12;1274:53;1346:29;1365:9;1346:29;:::i;:::-;1336:39;;1422:2;1411:9;1407:18;1394:32;1384:42;;1477:2;1466:9;1462:18;1449:32;1504:18;1496:6;1493:30;1490:50;;;1536:1;1533;1526:12;1490:50;1575:58;1625:7;1616:6;1605:9;1601:22;1575:58;:::i;:::-;1107:689;;;;-1:-1:-1;1652:8:1;1734:2;1719:18;;1706:32;;1785:3;1770:19;;;1757:33;;-1:-1:-1;1107:689:1;-1:-1:-1;;;;1107:689:1:o;1801:758::-;1916:6;1924;1932;1940;1948;1956;1964;2017:3;2005:9;1996:7;1992:23;1988:33;1985:53;;;2034:1;2031;2024:12;1985:53;2057:29;2076:9;2057:29;:::i;:::-;2047:39;;2133:2;2122:9;2118:18;2105:32;2095:42;;2188:2;2177:9;2173:18;2160:32;2215:18;2207:6;2204:30;2201:50;;;2247:1;2244;2237:12;2201:50;2286:58;2336:7;2327:6;2316:9;2312:22;2286:58;:::i;:::-;1801:758;;;;-1:-1:-1;2363:8:1;2445:2;2430:18;;2417:32;;2496:3;2481:19;;2468:33;;-1:-1:-1;2548:3:1;2533:19;;;2520:33;;-1:-1:-1;1801:758:1;-1:-1:-1;;;;1801:758:1:o;2564:1237::-;2751:6;2759;2767;2775;2783;2791;2799;2807;2860:3;2848:9;2839:7;2835:23;2831:33;2828:53;;;2877:1;2874;2867:12;2828:53;2917:9;2904:23;2946:18;2987:2;2979:6;2976:14;2973:34;;;3003:1;3000;2993:12;2973:34;3042:70;3104:7;3095:6;3084:9;3080:22;3042:70;:::i;:::-;3131:8;;-1:-1:-1;3016:96:1;-1:-1:-1;3219:2:1;3204:18;;3191:32;;-1:-1:-1;3235:16:1;;;3232:36;;;3264:1;3261;3254:12;3232:36;3303:72;3367:7;3356:8;3345:9;3341:24;3303:72;:::i;:::-;3394:8;;-1:-1:-1;3277:98:1;-1:-1:-1;3482:2:1;3467:18;;3454:32;;-1:-1:-1;3498:16:1;;;3495:36;;;3527:1;3524;3517:12;3495:36;;3566:72;3630:7;3619:8;3608:9;3604:24;3566:72;:::i;:::-;2564:1237;;;;-1:-1:-1;2564:1237:1;;;;3657:8;;3739:2;3724:18;;3711:32;;3790:3;3775:19;3762:33;;-1:-1:-1;2564:1237:1;-1:-1:-1;;;;2564:1237:1:o;3806:1306::-;4002:6;4010;4018;4026;4034;4042;4050;4058;4066;4119:3;4107:9;4098:7;4094:23;4090:33;4087:53;;;4136:1;4133;4126:12;4087:53;4176:9;4163:23;4205:18;4246:2;4238:6;4235:14;4232:34;;;4262:1;4259;4252:12;4232:34;4301:70;4363:7;4354:6;4343:9;4339:22;4301:70;:::i;:::-;4390:8;;-1:-1:-1;4275:96:1;-1:-1:-1;4478:2:1;4463:18;;4450:32;;-1:-1:-1;4494:16:1;;;4491:36;;;4523:1;4520;4513:12;4491:36;4562:72;4626:7;4615:8;4604:9;4600:24;4562:72;:::i;:::-;4653:8;;-1:-1:-1;4536:98:1;-1:-1:-1;4741:2:1;4726:18;;4713:32;;-1:-1:-1;4757:16:1;;;4754:36;;;4786:1;4783;4776:12;4754:36;;4825:72;4889:7;4878:8;4867:9;4863:24;4825:72;:::i;:::-;3806:1306;;;;-1:-1:-1;3806:1306:1;;;;4916:8;;4998:2;4983:18;;4970:32;;5049:3;5034:19;;5021:33;;-1:-1:-1;5101:3:1;5086:19;5073:33;;-1:-1:-1;3806:1306:1;-1:-1:-1;;;;3806:1306:1:o;5117:180::-;5176:6;5229:2;5217:9;5208:7;5204:23;5200:32;5197:52;;;5245:1;5242;5235:12;5197:52;-1:-1:-1;5268:23:1;;5117:180;-1:-1:-1;5117:180:1:o;5302:254::-;5370:6;5378;5431:2;5419:9;5410:7;5406:23;5402:32;5399:52;;;5447:1;5444;5437:12;5399:52;5483:9;5470:23;5460:33;;5512:38;5546:2;5535:9;5531:18;5512:38;:::i;:::-;5502:48;;5302:254;;;;;:::o;5561:286::-;5619:6;5672:2;5660:9;5651:7;5647:23;5643:32;5640:52;;;5688:1;5685;5678:12;5640:52;5714:23;;-1:-1:-1;;;;;;5766:32:1;;5756:43;;5746:71;;5813:1;5810;5803:12;6037:981;6144:6;6139:3;6132:19;6114:3;6170:4;6199:2;6194:3;6190:12;6183:19;;6224:3;6264:6;6261:1;6257:14;6252:3;6248:24;6295:5;6318:1;6328:664;6342:6;6339:1;6336:13;6328:664;;;6413:5;6407:4;6403:16;6398:3;6391:29;6472:6;6459:20;6562:2;6558:7;6550:5;6534:14;6530:26;6526:40;6506:18;6502:65;6492:93;;6581:1;6578;6571:12;6492:93;6613:30;;6672:21;;6722:18;6709:32;;6706:52;;;6754:1;6751;6744:12;6706:52;6805:8;6789:14;6785:29;6778:5;6774:41;6771:61;;;6828:1;6825;6818:12;6771:61;6853:59;6907:4;6897:8;6892:2;6883:7;6879:16;6853:59;:::i;:::-;6970:12;;;;6845:67;-1:-1:-1;;;6935:15:1;;;;6364:1;6357:9;6328:664;;;-1:-1:-1;7008:4:1;;6037:981;-1:-1:-1;;;;;;;6037:981:1:o;7023:266::-;7111:6;7106:3;7099:19;7163:6;7156:5;7149:4;7144:3;7140:14;7127:43;-1:-1:-1;7215:1:1;7190:16;;;7208:4;7186:27;;;7179:38;;;;7271:2;7250:15;;;-1:-1:-1;;7246:29:1;7237:39;;;7233:50;;7023:266::o;7294:271::-;7477:6;7469;7464:3;7451:33;7433:3;7503:16;;7528:13;;;7503:16;7294:271;-1:-1:-1;7294:271:1:o;7570:786::-;7981:25;7976:3;7969:38;7951:3;8036:6;8030:13;8052:62;8107:6;8102:2;8097:3;8093:12;8086:4;8078:6;8074:17;8052:62;:::i;:::-;-1:-1:-1;;;8173:2:1;8133:16;;;8165:11;;;8158:40;8223:13;;8245:63;8223:13;8294:2;8286:11;;8279:4;8267:17;;8245:63;:::i;:::-;8328:17;8347:2;8324:26;;7570:786;-1:-1:-1;;;;7570:786:1:o;8361:412::-;8603:1;8599;8594:3;8590:11;8586:19;8578:6;8574:32;8563:9;8556:51;8643:6;8638:2;8627:9;8623:18;8616:34;8686:2;8681;8670:9;8666:18;8659:30;8537:4;8706:61;8763:2;8752:9;8748:18;8740:6;8732;8706:61;:::i;:::-;8698:69;8361:412;-1:-1:-1;;;;;;8361:412:1:o;8778:557::-;9076:1;9072;9067:3;9063:11;9059:19;9051:6;9047:32;9036:9;9029:51;9116:6;9111:2;9100:9;9096:18;9089:34;9159:3;9154:2;9143:9;9139:18;9132:31;9010:4;9180:62;9237:3;9226:9;9222:19;9214:6;9206;9180:62;:::i;:::-;9273:2;9258:18;;9251:34;;;;-1:-1:-1;9316:3:1;9301:19;9294:35;9172:70;8778:557;-1:-1:-1;;;;8778:557:1:o;9902:1436::-;10354:3;10367:22;;;10339:19;;10424:22;;;10306:4;10504:6;10477:3;10462:19;;10306:4;10538:235;10552:6;10549:1;10546:13;10538:235;;;-1:-1:-1;;;;;10617:26:1;10636:6;10617:26;:::i;:::-;10613:52;10601:65;;10689:4;10748:15;;;;10713:12;;;;10574:1;10567:9;10538:235;;;-1:-1:-1;10811:19:1;;;10804:4;10789:20;;10782:49;10840:19;;;-1:-1:-1;;;;;10871:31:1;;10868:51;;;10915:1;10912;10905:12;10868:51;10949:6;10946:1;10942:14;10928:28;;11002:6;10994;10987:4;10982:3;10978:14;10965:44;11037:6;11032:3;11028:16;11018:26;;;11071:4;11067:2;11063:13;11096:1;11092:2;11085:13;11158:4;11146:9;11142:2;11138:18;11134:29;11129:2;11118:9;11114:18;11107:57;11181:64;11242:2;11234:6;11226;11181:64;:::i;:::-;11276:2;11261:18;;11254:34;;;;-1:-1:-1;;;11319:3:1;11304:19;11297:35;11173:72;9902:1436;-1:-1:-1;;;;;;9902:1436:1:o;11717:383::-;11866:2;11855:9;11848:21;11829:4;11898:6;11892:13;11941:6;11936:2;11925:9;11921:18;11914:34;11957:66;12016:6;12011:2;12000:9;11996:18;11991:2;11983:6;11979:15;11957:66;:::i;:::-;12084:2;12063:15;-1:-1:-1;;12059:29:1;12044:45;;;;12091:2;12040:54;;11717:383;-1:-1:-1;;11717:383:1:o;12873:399::-;13075:2;13057:21;;;13114:2;13094:18;;;13087:30;13153:34;13148:2;13133:18;;13126:62;-1:-1:-1;;;13219:2:1;13204:18;;13197:33;13262:3;13247:19;;12873:399::o;14100:406::-;14302:2;14284:21;;;14341:2;14321:18;;;14314:30;14380:34;14375:2;14360:18;;14353:62;-1:-1:-1;;;14446:2:1;14431:18;;14424:40;14496:3;14481:19;;14100:406::o;16612:521::-;16689:4;16695:6;16755:11;16742:25;16849:2;16845:7;16834:8;16818:14;16814:29;16810:43;16790:18;16786:68;16776:96;;16868:1;16865;16858:12;16776:96;16895:33;;16947:20;;;-1:-1:-1;16990:18:1;16979:30;;16976:50;;;17022:1;17019;17012:12;16976:50;17055:4;17043:17;;-1:-1:-1;17086:14:1;17082:27;;;17072:38;;17069:58;;;17123:1;17120;17113:12;17138:128;17178:3;17209:1;17205:6;17202:1;17199:13;17196:39;;;17215:18;;:::i;:::-;-1:-1:-1;17251:9:1;;17138:128::o;17271:168::-;17311:7;17377:1;17373;17369:6;17365:14;17362:1;17359:21;17354:1;17347:9;17340:17;17336:45;17333:71;;;17384:18;;:::i;:::-;-1:-1:-1;17424:9:1;;17271:168::o;17444:258::-;17516:1;17526:113;17540:6;17537:1;17534:13;17526:113;;;17616:11;;;17610:18;17597:11;;;17590:39;17562:2;17555:10;17526:113;;;17657:6;17654:1;17651:13;17648:48;;;17692:1;17683:6;17678:3;17674:16;17667:27;17648:48;;17444:258;;;:::o;17707:136::-;17746:3;17774:5;17764:39;;17783:18;;:::i;:::-;-1:-1:-1;;;17819:18:1;;17707:136::o;17848:135::-;17887:3;-1:-1:-1;;17908:17:1;;17905:43;;;17928:18;;:::i;:::-;-1:-1:-1;17975:1:1;17964:13;;17848:135::o;17988:127::-;18049:10;18044:3;18040:20;18037:1;18030:31;18080:4;18077:1;18070:15;18104:4;18101:1;18094:15;18120:127;18181:10;18176:3;18172:20;18169:1;18162:31;18212:4;18209:1;18202:15;18236:4;18233:1;18226:15;18252:127;18313:10;18308:3;18304:20;18301:1;18294:31;18344:4;18341:1;18334:15;18368:4;18365:1;18358:15
Swarm Source
ipfs://cad393987677c0088e17f439205ef86e41e86383fff5ae47913449595d466c34
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ARB | 100.00% | $0.999723 | 51.5221 | $51.51 |
[ 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.