Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Timelock
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 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.7; pragma abicoder v2; import "@openzeppelin/contracts/governance/TimelockController.sol"; contract Timelock is TimelockController { constructor(uint256 minDelay, address[] memory proposers, address[] memory executors) TimelockController(minDelay, proposers,executors ) { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../access/AccessControl.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @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()); } } }
// SPDX-License-Identifier: MIT 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; }
// SPDX-License-Identifier: MIT 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 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); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
// SPDX-License-Identifier: MIT 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
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
60806040523480156200001157600080fd5b506040516200351b3803806200351b83398181016040528101906200003791906200058b565b8282826200006c7f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca580620002b460201b60201c565b620000be7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc17f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5620002b460201b60201c565b620001107fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e637f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5620002b460201b60201c565b620001517f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5620001456200031760201b60201c565b6200031f60201b60201c565b620001837f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca5306200031f60201b60201c565b60005b8251811015620001f357620001df7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1848381518110620001cb57620001ca620007d1565b5b60200260200101516200031f60201b60201c565b80620001eb9062000754565b905062000186565b5060005b81518110156200026457620002507fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e638383815181106200023c576200023b620007d1565b5b60200260200101516200031f60201b60201c565b806200025c9062000754565b9050620001f7565b50826002819055507f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d5600084604051620002a092919062000647565b60405180910390a150505050505062000888565b6000620002c7836200033560201b60201c565b905081600080858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b600033905090565b6200033182826200035460201b60201c565b5050565b6000806000838152602001908152602001600020600101549050919050565b6200036682826200044560201b60201c565b6200044157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003e66200031760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000620004c6620004c0846200069d565b62000674565b90508083825260208201905082856020860282011115620004ec57620004eb62000834565b5b60005b858110156200052057816200050588826200052a565b845260208401935060208301925050600181019050620004ef565b5050509392505050565b6000815190506200053b8162000854565b92915050565b600082601f8301126200055957620005586200082f565b5b81516200056b848260208601620004af565b91505092915050565b60008151905062000585816200086e565b92915050565b600080600060608486031215620005a757620005a66200083e565b5b6000620005b78682870162000574565b935050602084015167ffffffffffffffff811115620005db57620005da62000839565b5b620005e98682870162000541565b925050604084015167ffffffffffffffff8111156200060d576200060c62000839565b5b6200061b8682870162000541565b9150509250925092565b62000630816200070a565b82525050565b620006418162000700565b82525050565b60006040820190506200065e600083018562000625565b6200066d602083018462000636565b9392505050565b60006200068062000693565b90506200068e82826200071e565b919050565b6000604051905090565b600067ffffffffffffffff821115620006bb57620006ba62000800565b5b602082029050602081019050919050565b6000620006d982620006e0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000620007178262000700565b9050919050565b620007298262000843565b810181811067ffffffffffffffff821117156200074b576200074a62000800565b5b80604052505050565b6000620007618262000700565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620007975762000796620007a2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200085f81620006cc565b81146200086b57600080fd5b50565b620008798162000700565b81146200088557600080fd5b50565b612c8380620008986000396000f3fe60806040526004361061014f5760003560e01c806364d62353116100b6578063b1c5f4271161006f578063b1c5f427146104d8578063c4d252f514610515578063d45c44351461053e578063d547741f1461057b578063e38335e5146105a4578063f27a0c92146105c057610156565b806364d62353146103b65780638065657f146103df5780638f2a0bb01461041c5780638f61f4f51461044557806391d1485414610470578063a217fddf146104ad57610156565b8063248a9ca311610108578063248a9ca3146102705780632ab0f529146102ad5780632f2ff15d146102ea57806331d507501461031357806336568abe14610350578063584b153e1461037957610156565b806301d5062a1461015b57806301ffc9a71461018457806307bd0265146101c15780630d3cf6fc146101ec578063134008d31461021757806313bc9f201461023357610156565b3661015657005b600080fd5b34801561016757600080fd5b50610182600480360381019061017d9190611955565b6105eb565b005b34801561019057600080fd5b506101ab60048036038101906101a69190611c3c565b610688565b6040516101b89190612284565b60405180910390f35b3480156101cd57600080fd5b506101d6610702565b6040516101e3919061229f565b60405180910390f35b3480156101f857600080fd5b50610201610726565b60405161020e919061229f565b60405180910390f35b610231600480360381019061022c91906118bb565b61074a565b005b34801561023f57600080fd5b5061025a60048036038101906102559190611bcf565b6107ca565b6040516102679190612284565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190611bcf565b6107f0565b6040516102a4919061229f565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190611bcf565b61080f565b6040516102e19190612284565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190611bfc565b610824565b005b34801561031f57600080fd5b5061033a60048036038101906103359190611bcf565b61084d565b6040516103479190612284565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190611bfc565b610861565b005b34801561038557600080fd5b506103a0600480360381019061039b9190611bcf565b6108e4565b6040516103ad9190612284565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190611c69565b6108f9565b005b3480156103eb57600080fd5b50610406600480360381019061040191906118bb565b6109ac565b604051610413919061229f565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611ae0565b6109eb565b005b34801561045157600080fd5b5061045a610b9e565b604051610467919061229f565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190611bfc565b610bc2565b6040516104a49190612284565b60405180910390f35b3480156104b957600080fd5b506104c2610c2c565b6040516104cf919061229f565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190611a04565b610c33565b60405161050c919061229f565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190611bcf565b610c78565b005b34801561054a57600080fd5b5061056560048036038101906105609190611bcf565b610d3a565b604051610572919061241c565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190611bfc565b610d57565b005b6105be60048036038101906105b99190611a04565b610d80565b005b3480156105cc57600080fd5b506105d5610f16565b6040516105e2919061241c565b60405180910390f35b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc161061d81610618610f20565b610f28565b600061062d8989898989896109ac565b90506106398184610fc5565b6000817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a604051610675969594939291906121ba565b60405180910390a3505050505050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fb57506106fa8261107f565b5b9050919050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b7f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca581565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610776816000610bc2565b61078c5761078b81610786610f20565b610f28565b5b600061079c8888888888886109ac565b90506107a881856110e9565b6107b78160008a8a8a8a61118a565b6107c081611282565b5050505050505050565b6000806107d683610d3a565b90506001811180156107e85750428111155b915050919050565b6000806000838152602001908152602001600020600101549050919050565b6000600161081c83610d3a565b149050919050565b61082d826107f0565b61083e81610839610f20565b610f28565b61084883836112e5565b505050565b60008061085983610d3a565b119050919050565b610869610f20565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd906123dc565b60405180910390fd5b6108e082826113c5565b5050565b600060016108f183610d3a565b119050919050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e906123bc565b60405180910390fd5b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d56002548260405161099a929190612437565b60405180910390a18060028190555050565b60008686868686866040516020016109c99695949392919061215e565b6040516020818303038152906040528051906020012090509695505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610a1d81610a18610f20565b610f28565b878790508a8a905014610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061231c565b60405180910390fd5b858590508a8a905014610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa49061231c565b60405180910390fd5b6000610abf8b8b8b8b8b8b8b8b610c33565b9050610acb8184610fc5565b60005b8b8b9050811015610b905780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e85818110610b0f57610b0e612804565b5b9050602002016020810190610b24919061188e565b8d8d86818110610b3757610b36612804565b5b905060200201358c8c87818110610b5157610b50612804565b5b9050602002810190610b639190612460565b8c8b604051610b77969594939291906121ba565b60405180910390a380610b899061278c565b9050610ace565b505050505050505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc181565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b60008888888888888888604051602001610c54989796959493929190612216565b60405160208183030381529060405280519060200120905098975050505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610caa81610ca5610f20565b610f28565b610cb3826108e4565b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce99061239c565b60405180910390fd5b6001600083815260200190815260200160002060009055817fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7060405160405180910390a25050565b600060016000838152602001908152602001600020549050919050565b610d60826107f0565b610d7181610d6c610f20565b610f28565b610d7b83836113c5565b505050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610dac816000610bc2565b610dc257610dc181610dbc610f20565b610f28565b5b868690508989905014610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e019061231c565b60405180910390fd5b848490508989905014610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e499061231c565b60405180910390fd5b6000610e648a8a8a8a8a8a8a8a610c33565b9050610e7081856110e9565b60005b8a8a9050811015610f0057610eef82828d8d85818110610e9657610e95612804565b5b9050602002016020810190610eab919061188e565b8c8c86818110610ebe57610ebd612804565b5b905060200201358b8b87818110610ed857610ed7612804565b5b9050602002810190610eea9190612460565b61118a565b80610ef99061278c565b9050610e73565b50610f0a81611282565b50505050505050505050565b6000600254905090565b600033905090565b610f328282610bc2565b610fc157610f578173ffffffffffffffffffffffffffffffffffffffff1660146114a6565b610f658360001c60206114a6565b604051602001610f769291906120e4565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb891906122ba565b60405180910390fd5b5050565b610fce8261084d565b1561100e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110059061235c565b60405180910390fd5b611016610f16565b811015611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f9061233c565b60405180910390fd5b804261106491906125f2565b60016000848152602001908152602001600020819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6110f2826107ca565b611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111289061237c565b60405180910390fd5b6000801b81148061114757506111468161080f565b5b611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906122fc565b60405180910390fd5b5050565b60008473ffffffffffffffffffffffffffffffffffffffff168484846040516111b49291906120cb565b60006040518083038185875af1925050503d80600081146111f1576040519150601f19603f3d011682016040523d82523d6000602084013e6111f6565b606091505b505090508061123a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611231906123fc565b60405180910390fd5b85877fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b5887878787604051611271949392919061211e565b60405180910390a350505050505050565b61128b816107ca565b6112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c19061237c565b60405180910390fd5b60018060008381526020019081526020016000208190555050565b6112ef8282610bc2565b6113c157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611366610f20565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6113cf8282610bc2565b156114a257600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611447610f20565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6060600060028360026114b99190612648565b6114c391906125f2565b67ffffffffffffffff8111156114dc576114db612833565b5b6040519080825280601f01601f19166020018201604052801561150e5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061154657611545612804565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106115aa576115a9612804565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026115ea9190612648565b6115f491906125f2565b90505b6001811115611694577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061163657611635612804565b5b1a60f81b82828151811061164d5761164c612804565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061168d90612762565b90506115f7565b50600084146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf906122dc565b60405180910390fd5b8091505092915050565b6000813590506116f181612bf1565b92915050565b60008083601f84011261170d5761170c61286c565b5b8235905067ffffffffffffffff81111561172a57611729612867565b5b60208301915083602082028301111561174657611745612880565b5b9250929050565b60008083601f8401126117635761176261286c565b5b8235905067ffffffffffffffff8111156117805761177f612867565b5b60208301915083602082028301111561179c5761179b612880565b5b9250929050565b60008083601f8401126117b9576117b861286c565b5b8235905067ffffffffffffffff8111156117d6576117d5612867565b5b6020830191508360208202830111156117f2576117f1612880565b5b9250929050565b60008135905061180881612c08565b92915050565b60008135905061181d81612c1f565b92915050565b60008083601f8401126118395761183861286c565b5b8235905067ffffffffffffffff81111561185657611855612867565b5b60208301915083600182028301111561187257611871612880565b5b9250929050565b60008135905061188881612c36565b92915050565b6000602082840312156118a4576118a3612899565b5b60006118b2848285016116e2565b91505092915050565b60008060008060008060a087890312156118d8576118d7612899565b5b60006118e689828a016116e2565b96505060206118f789828a01611879565b955050604087013567ffffffffffffffff8111156119185761191761288a565b5b61192489828a01611823565b9450945050606061193789828a016117f9565b925050608061194889828a016117f9565b9150509295509295509295565b600080600080600080600060c0888a03121561197457611973612899565b5b60006119828a828b016116e2565b97505060206119938a828b01611879565b965050604088013567ffffffffffffffff8111156119b4576119b361288a565b5b6119c08a828b01611823565b955095505060606119d38a828b016117f9565b93505060806119e48a828b016117f9565b92505060a06119f58a828b01611879565b91505092959891949750929550565b60008060008060008060008060a0898b031215611a2457611a23612899565b5b600089013567ffffffffffffffff811115611a4257611a4161288a565b5b611a4e8b828c016116f7565b9850985050602089013567ffffffffffffffff811115611a7157611a7061288a565b5b611a7d8b828c016117a3565b9650965050604089013567ffffffffffffffff811115611aa057611a9f61288a565b5b611aac8b828c0161174d565b94509450506060611abf8b828c016117f9565b9250506080611ad08b828c016117f9565b9150509295985092959890939650565b600080600080600080600080600060c08a8c031215611b0257611b01612899565b5b60008a013567ffffffffffffffff811115611b2057611b1f61288a565b5b611b2c8c828d016116f7565b995099505060208a013567ffffffffffffffff811115611b4f57611b4e61288a565b5b611b5b8c828d016117a3565b975097505060408a013567ffffffffffffffff811115611b7e57611b7d61288a565b5b611b8a8c828d0161174d565b95509550506060611b9d8c828d016117f9565b9350506080611bae8c828d016117f9565b92505060a0611bbf8c828d01611879565b9150509295985092959850929598565b600060208284031215611be557611be4612899565b5b6000611bf3848285016117f9565b91505092915050565b60008060408385031215611c1357611c12612899565b5b6000611c21858286016117f9565b9250506020611c32858286016116e2565b9150509250929050565b600060208284031215611c5257611c51612899565b5b6000611c608482850161180e565b91505092915050565b600060208284031215611c7f57611c7e612899565b5b6000611c8d84828501611879565b91505092915050565b6000611ca28383611cc4565b60208301905092915050565b6000611cbb848484611e2f565b90509392505050565b611ccd816126a2565b82525050565b611cdc816126a2565b82525050565b6000611cee83856124fc565b9350611cf9826124c3565b8060005b85811015611d3257611d0f8284612578565b611d198882611c96565b9750611d24836124e2565b925050600181019050611cfd565b5085925050509392505050565b6000611d4b838561250d565b935083602084028501611d5d846124cd565b8060005b87811015611da3578484038952611d78828461258f565b611d83868284611cae565b9550611d8e846124ef565b935060208b019a505050600181019050611d61565b50829750879450505050509392505050565b6000611dc1838561251e565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115611df457611df361288f565b5b602083029250611e05838584612720565b82840190509392505050565b611e1a816126b4565b82525050565b611e29816126c0565b82525050565b6000611e3b838561252f565b9350611e48838584612720565b611e518361289e565b840190509392505050565b6000611e688385612540565b9350611e75838584612720565b611e7e8361289e565b840190509392505050565b6000611e958385612551565b9350611ea2838584612720565b82840190509392505050565b6000611eb9826124d7565b611ec3818561255c565b9350611ed381856020860161272f565b611edc8161289e565b840191505092915050565b6000611ef2826124d7565b611efc818561256d565b9350611f0c81856020860161272f565b80840191505092915050565b6000611f2560208361255c565b9150611f30826128af565b602082019050919050565b6000611f4860268361255c565b9150611f53826128d8565b604082019050919050565b6000611f6b60238361255c565b9150611f7682612927565b604082019050919050565b6000611f8e60268361255c565b9150611f9982612976565b604082019050919050565b6000611fb1602f8361255c565b9150611fbc826129c5565b604082019050919050565b6000611fd4602a8361255c565b9150611fdf82612a14565b604082019050919050565b6000611ff760178361256d565b915061200282612a63565b601782019050919050565b600061201a60318361255c565b915061202582612a8c565b604082019050919050565b600061203d60118361256d565b915061204882612adb565b601182019050919050565b6000612060602b8361255c565b915061206b82612b04565b604082019050919050565b6000612083602f8361255c565b915061208e82612b53565b604082019050919050565b60006120a660338361255c565b91506120b182612ba2565b604082019050919050565b6120c581612716565b82525050565b60006120d8828486611e89565b91508190509392505050565b60006120ef82611fea565b91506120fb8285611ee7565b915061210682612030565b91506121128284611ee7565b91508190509392505050565b60006060820190506121336000830187611cd3565b61214060208301866120bc565b8181036040830152612153818486611e5c565b905095945050505050565b600060a0820190506121736000830189611cd3565b61218060208301886120bc565b8181036040830152612193818688611e5c565b90506121a26060830185611e20565b6121af6080830184611e20565b979650505050505050565b600060a0820190506121cf6000830189611cd3565b6121dc60208301886120bc565b81810360408301526121ef818688611e5c565b90506121fe6060830185611e20565b61220b60808301846120bc565b979650505050505050565b600060a0820190508181036000830152612231818a8c611ce2565b9050818103602083015261224681888a611db5565b9050818103604083015261225b818688611d3f565b905061226a6060830185611e20565b6122776080830184611e20565b9998505050505050505050565b60006020820190506122996000830184611e11565b92915050565b60006020820190506122b46000830184611e20565b92915050565b600060208201905081810360008301526122d48184611eae565b905092915050565b600060208201905081810360008301526122f581611f18565b9050919050565b6000602082019050818103600083015261231581611f3b565b9050919050565b6000602082019050818103600083015261233581611f5e565b9050919050565b6000602082019050818103600083015261235581611f81565b9050919050565b6000602082019050818103600083015261237581611fa4565b9050919050565b6000602082019050818103600083015261239581611fc7565b9050919050565b600060208201905081810360008301526123b58161200d565b9050919050565b600060208201905081810360008301526123d581612053565b9050919050565b600060208201905081810360008301526123f581612076565b9050919050565b6000602082019050818103600083015261241581612099565b9050919050565b600060208201905061243160008301846120bc565b92915050565b600060408201905061244c60008301856120bc565b61245960208301846120bc565b9392505050565b6000808335600160200384360303811261247d5761247c612876565b5b80840192508235915067ffffffffffffffff82111561249f5761249e612871565b5b6020830192506001820236038313156124bb576124ba612885565b5b509250929050565b6000819050919050565b6000819050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061258760208401846116e2565b905092915050565b600080833560016020038436030381126125ac576125ab612894565b5b83810192508235915060208301925067ffffffffffffffff8211156125d4576125d3612862565b5b6001820236038413156125ea576125e961287b565b5b509250929050565b60006125fd82612716565b915061260883612716565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561263d5761263c6127d5565b5b828201905092915050565b600061265382612716565b915061265e83612716565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612697576126966127d5565b5b828202905092915050565b60006126ad826126f6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561274d578082015181840152602081019050612732565b8381111561275c576000848401525b50505050565b600061276d82612716565b91506000821415612781576127806127d5565b5b600182039050919050565b600061279782612716565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156127ca576127c96127d5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206d697373696e67206465706560008201527f6e64656e63790000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206c656e677468206d69736d6160008201527f7463680000000000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a20696e73756666696369656e7460008201527f2064656c61790000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20616c60008201527f7265616479207363686564756c65640000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20697360008201527f206e6f7420726561647900000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20636160008201527f6e6e6f742062652063616e63656c6c6564000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a2063616c6c6572206d7573742060008201527f62652074696d656c6f636b000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a20756e6465726c79696e67207460008201527f72616e73616374696f6e20726576657274656400000000000000000000000000602082015250565b612bfa816126a2565b8114612c0557600080fd5b50565b612c11816126c0565b8114612c1c57600080fd5b50565b612c28816126ca565b8114612c3357600080fd5b50565b612c3f81612716565b8114612c4a57600080fd5b5056fea264697066735822122081a717da1ccfe71817df3a151159f023bbfc1ecf0b52866345c84723ee19242864736f6c63430008070033000000000000000000000000000000000000000000000000000000000002a300000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000fa7d2a996ac6350f4b56c043112da0366a59b74c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000fa7d2a996ac6350f4b56c043112da0366a59b74c
Deployed Bytecode
0x60806040526004361061014f5760003560e01c806364d62353116100b6578063b1c5f4271161006f578063b1c5f427146104d8578063c4d252f514610515578063d45c44351461053e578063d547741f1461057b578063e38335e5146105a4578063f27a0c92146105c057610156565b806364d62353146103b65780638065657f146103df5780638f2a0bb01461041c5780638f61f4f51461044557806391d1485414610470578063a217fddf146104ad57610156565b8063248a9ca311610108578063248a9ca3146102705780632ab0f529146102ad5780632f2ff15d146102ea57806331d507501461031357806336568abe14610350578063584b153e1461037957610156565b806301d5062a1461015b57806301ffc9a71461018457806307bd0265146101c15780630d3cf6fc146101ec578063134008d31461021757806313bc9f201461023357610156565b3661015657005b600080fd5b34801561016757600080fd5b50610182600480360381019061017d9190611955565b6105eb565b005b34801561019057600080fd5b506101ab60048036038101906101a69190611c3c565b610688565b6040516101b89190612284565b60405180910390f35b3480156101cd57600080fd5b506101d6610702565b6040516101e3919061229f565b60405180910390f35b3480156101f857600080fd5b50610201610726565b60405161020e919061229f565b60405180910390f35b610231600480360381019061022c91906118bb565b61074a565b005b34801561023f57600080fd5b5061025a60048036038101906102559190611bcf565b6107ca565b6040516102679190612284565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190611bcf565b6107f0565b6040516102a4919061229f565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190611bcf565b61080f565b6040516102e19190612284565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c9190611bfc565b610824565b005b34801561031f57600080fd5b5061033a60048036038101906103359190611bcf565b61084d565b6040516103479190612284565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190611bfc565b610861565b005b34801561038557600080fd5b506103a0600480360381019061039b9190611bcf565b6108e4565b6040516103ad9190612284565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190611c69565b6108f9565b005b3480156103eb57600080fd5b50610406600480360381019061040191906118bb565b6109ac565b604051610413919061229f565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190611ae0565b6109eb565b005b34801561045157600080fd5b5061045a610b9e565b604051610467919061229f565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190611bfc565b610bc2565b6040516104a49190612284565b60405180910390f35b3480156104b957600080fd5b506104c2610c2c565b6040516104cf919061229f565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa9190611a04565b610c33565b60405161050c919061229f565b60405180910390f35b34801561052157600080fd5b5061053c60048036038101906105379190611bcf565b610c78565b005b34801561054a57600080fd5b5061056560048036038101906105609190611bcf565b610d3a565b604051610572919061241c565b60405180910390f35b34801561058757600080fd5b506105a2600480360381019061059d9190611bfc565b610d57565b005b6105be60048036038101906105b99190611a04565b610d80565b005b3480156105cc57600080fd5b506105d5610f16565b6040516105e2919061241c565b60405180910390f35b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc161061d81610618610f20565b610f28565b600061062d8989898989896109ac565b90506106398184610fc5565b6000817f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8b8b8b8b8b8a604051610675969594939291906121ba565b60405180910390a3505050505050505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fb57506106fa8261107f565b5b9050919050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b7f5f58e3a2316349923ce3780f8d587db2d72378aed66a8261c916544fa6846ca581565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610776816000610bc2565b61078c5761078b81610786610f20565b610f28565b5b600061079c8888888888886109ac565b90506107a881856110e9565b6107b78160008a8a8a8a61118a565b6107c081611282565b5050505050505050565b6000806107d683610d3a565b90506001811180156107e85750428111155b915050919050565b6000806000838152602001908152602001600020600101549050919050565b6000600161081c83610d3a565b149050919050565b61082d826107f0565b61083e81610839610f20565b610f28565b61084883836112e5565b505050565b60008061085983610d3a565b119050919050565b610869610f20565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cd906123dc565b60405180910390fd5b6108e082826113c5565b5050565b600060016108f183610d3a565b119050919050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e906123bc565b60405180910390fd5b7f11c24f4ead16507c69ac467fbd5e4eed5fb5c699626d2cc6d66421df253886d56002548260405161099a929190612437565b60405180910390a18060028190555050565b60008686868686866040516020016109c99695949392919061215e565b6040516020818303038152906040528051906020012090509695505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610a1d81610a18610f20565b610f28565b878790508a8a905014610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061231c565b60405180910390fd5b858590508a8a905014610aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa49061231c565b60405180910390fd5b6000610abf8b8b8b8b8b8b8b8b610c33565b9050610acb8184610fc5565b60005b8b8b9050811015610b905780827f4cf4410cc57040e44862ef0f45f3dd5a5e02db8eb8add648d4b0e236f1d07dca8e8e85818110610b0f57610b0e612804565b5b9050602002016020810190610b24919061188e565b8d8d86818110610b3757610b36612804565b5b905060200201358c8c87818110610b5157610b50612804565b5b9050602002810190610b639190612460565b8c8b604051610b77969594939291906121ba565b60405180910390a380610b899061278c565b9050610ace565b505050505050505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc181565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b60008888888888888888604051602001610c54989796959493929190612216565b60405160208183030381529060405280519060200120905098975050505050505050565b7fb09aa5aeb3702cfd50b6b62bc4532604938f21248a27a1d5ca736082b6819cc1610caa81610ca5610f20565b610f28565b610cb3826108e4565b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce99061239c565b60405180910390fd5b6001600083815260200190815260200160002060009055817fbaa1eb22f2a492ba1a5fea61b8df4d27c6c8b5f3971e63bb58fa14ff72eedb7060405160405180910390a25050565b600060016000838152602001908152602001600020549050919050565b610d60826107f0565b610d7181610d6c610f20565b610f28565b610d7b83836113c5565b505050565b7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63610dac816000610bc2565b610dc257610dc181610dbc610f20565b610f28565b5b868690508989905014610e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e019061231c565b60405180910390fd5b848490508989905014610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e499061231c565b60405180910390fd5b6000610e648a8a8a8a8a8a8a8a610c33565b9050610e7081856110e9565b60005b8a8a9050811015610f0057610eef82828d8d85818110610e9657610e95612804565b5b9050602002016020810190610eab919061188e565b8c8c86818110610ebe57610ebd612804565b5b905060200201358b8b87818110610ed857610ed7612804565b5b9050602002810190610eea9190612460565b61118a565b80610ef99061278c565b9050610e73565b50610f0a81611282565b50505050505050505050565b6000600254905090565b600033905090565b610f328282610bc2565b610fc157610f578173ffffffffffffffffffffffffffffffffffffffff1660146114a6565b610f658360001c60206114a6565b604051602001610f769291906120e4565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb891906122ba565b60405180910390fd5b5050565b610fce8261084d565b1561100e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110059061235c565b60405180910390fd5b611016610f16565b811015611058576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104f9061233c565b60405180910390fd5b804261106491906125f2565b60016000848152602001908152602001600020819055505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6110f2826107ca565b611131576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111289061237c565b60405180910390fd5b6000801b81148061114757506111468161080f565b5b611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d906122fc565b60405180910390fd5b5050565b60008473ffffffffffffffffffffffffffffffffffffffff168484846040516111b49291906120cb565b60006040518083038185875af1925050503d80600081146111f1576040519150601f19603f3d011682016040523d82523d6000602084013e6111f6565b606091505b505090508061123a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611231906123fc565b60405180910390fd5b85877fc2617efa69bab66782fa219543714338489c4e9e178271560a91b82c3f612b5887878787604051611271949392919061211e565b60405180910390a350505050505050565b61128b816107ca565b6112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c19061237c565b60405180910390fd5b60018060008381526020019081526020016000208190555050565b6112ef8282610bc2565b6113c157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611366610f20565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6113cf8282610bc2565b156114a257600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611447610f20565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6060600060028360026114b99190612648565b6114c391906125f2565b67ffffffffffffffff8111156114dc576114db612833565b5b6040519080825280601f01601f19166020018201604052801561150e5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061154657611545612804565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106115aa576115a9612804565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026115ea9190612648565b6115f491906125f2565b90505b6001811115611694577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061163657611635612804565b5b1a60f81b82828151811061164d5761164c612804565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061168d90612762565b90506115f7565b50600084146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf906122dc565b60405180910390fd5b8091505092915050565b6000813590506116f181612bf1565b92915050565b60008083601f84011261170d5761170c61286c565b5b8235905067ffffffffffffffff81111561172a57611729612867565b5b60208301915083602082028301111561174657611745612880565b5b9250929050565b60008083601f8401126117635761176261286c565b5b8235905067ffffffffffffffff8111156117805761177f612867565b5b60208301915083602082028301111561179c5761179b612880565b5b9250929050565b60008083601f8401126117b9576117b861286c565b5b8235905067ffffffffffffffff8111156117d6576117d5612867565b5b6020830191508360208202830111156117f2576117f1612880565b5b9250929050565b60008135905061180881612c08565b92915050565b60008135905061181d81612c1f565b92915050565b60008083601f8401126118395761183861286c565b5b8235905067ffffffffffffffff81111561185657611855612867565b5b60208301915083600182028301111561187257611871612880565b5b9250929050565b60008135905061188881612c36565b92915050565b6000602082840312156118a4576118a3612899565b5b60006118b2848285016116e2565b91505092915050565b60008060008060008060a087890312156118d8576118d7612899565b5b60006118e689828a016116e2565b96505060206118f789828a01611879565b955050604087013567ffffffffffffffff8111156119185761191761288a565b5b61192489828a01611823565b9450945050606061193789828a016117f9565b925050608061194889828a016117f9565b9150509295509295509295565b600080600080600080600060c0888a03121561197457611973612899565b5b60006119828a828b016116e2565b97505060206119938a828b01611879565b965050604088013567ffffffffffffffff8111156119b4576119b361288a565b5b6119c08a828b01611823565b955095505060606119d38a828b016117f9565b93505060806119e48a828b016117f9565b92505060a06119f58a828b01611879565b91505092959891949750929550565b60008060008060008060008060a0898b031215611a2457611a23612899565b5b600089013567ffffffffffffffff811115611a4257611a4161288a565b5b611a4e8b828c016116f7565b9850985050602089013567ffffffffffffffff811115611a7157611a7061288a565b5b611a7d8b828c016117a3565b9650965050604089013567ffffffffffffffff811115611aa057611a9f61288a565b5b611aac8b828c0161174d565b94509450506060611abf8b828c016117f9565b9250506080611ad08b828c016117f9565b9150509295985092959890939650565b600080600080600080600080600060c08a8c031215611b0257611b01612899565b5b60008a013567ffffffffffffffff811115611b2057611b1f61288a565b5b611b2c8c828d016116f7565b995099505060208a013567ffffffffffffffff811115611b4f57611b4e61288a565b5b611b5b8c828d016117a3565b975097505060408a013567ffffffffffffffff811115611b7e57611b7d61288a565b5b611b8a8c828d0161174d565b95509550506060611b9d8c828d016117f9565b9350506080611bae8c828d016117f9565b92505060a0611bbf8c828d01611879565b9150509295985092959850929598565b600060208284031215611be557611be4612899565b5b6000611bf3848285016117f9565b91505092915050565b60008060408385031215611c1357611c12612899565b5b6000611c21858286016117f9565b9250506020611c32858286016116e2565b9150509250929050565b600060208284031215611c5257611c51612899565b5b6000611c608482850161180e565b91505092915050565b600060208284031215611c7f57611c7e612899565b5b6000611c8d84828501611879565b91505092915050565b6000611ca28383611cc4565b60208301905092915050565b6000611cbb848484611e2f565b90509392505050565b611ccd816126a2565b82525050565b611cdc816126a2565b82525050565b6000611cee83856124fc565b9350611cf9826124c3565b8060005b85811015611d3257611d0f8284612578565b611d198882611c96565b9750611d24836124e2565b925050600181019050611cfd565b5085925050509392505050565b6000611d4b838561250d565b935083602084028501611d5d846124cd565b8060005b87811015611da3578484038952611d78828461258f565b611d83868284611cae565b9550611d8e846124ef565b935060208b019a505050600181019050611d61565b50829750879450505050509392505050565b6000611dc1838561251e565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115611df457611df361288f565b5b602083029250611e05838584612720565b82840190509392505050565b611e1a816126b4565b82525050565b611e29816126c0565b82525050565b6000611e3b838561252f565b9350611e48838584612720565b611e518361289e565b840190509392505050565b6000611e688385612540565b9350611e75838584612720565b611e7e8361289e565b840190509392505050565b6000611e958385612551565b9350611ea2838584612720565b82840190509392505050565b6000611eb9826124d7565b611ec3818561255c565b9350611ed381856020860161272f565b611edc8161289e565b840191505092915050565b6000611ef2826124d7565b611efc818561256d565b9350611f0c81856020860161272f565b80840191505092915050565b6000611f2560208361255c565b9150611f30826128af565b602082019050919050565b6000611f4860268361255c565b9150611f53826128d8565b604082019050919050565b6000611f6b60238361255c565b9150611f7682612927565b604082019050919050565b6000611f8e60268361255c565b9150611f9982612976565b604082019050919050565b6000611fb1602f8361255c565b9150611fbc826129c5565b604082019050919050565b6000611fd4602a8361255c565b9150611fdf82612a14565b604082019050919050565b6000611ff760178361256d565b915061200282612a63565b601782019050919050565b600061201a60318361255c565b915061202582612a8c565b604082019050919050565b600061203d60118361256d565b915061204882612adb565b601182019050919050565b6000612060602b8361255c565b915061206b82612b04565b604082019050919050565b6000612083602f8361255c565b915061208e82612b53565b604082019050919050565b60006120a660338361255c565b91506120b182612ba2565b604082019050919050565b6120c581612716565b82525050565b60006120d8828486611e89565b91508190509392505050565b60006120ef82611fea565b91506120fb8285611ee7565b915061210682612030565b91506121128284611ee7565b91508190509392505050565b60006060820190506121336000830187611cd3565b61214060208301866120bc565b8181036040830152612153818486611e5c565b905095945050505050565b600060a0820190506121736000830189611cd3565b61218060208301886120bc565b8181036040830152612193818688611e5c565b90506121a26060830185611e20565b6121af6080830184611e20565b979650505050505050565b600060a0820190506121cf6000830189611cd3565b6121dc60208301886120bc565b81810360408301526121ef818688611e5c565b90506121fe6060830185611e20565b61220b60808301846120bc565b979650505050505050565b600060a0820190508181036000830152612231818a8c611ce2565b9050818103602083015261224681888a611db5565b9050818103604083015261225b818688611d3f565b905061226a6060830185611e20565b6122776080830184611e20565b9998505050505050505050565b60006020820190506122996000830184611e11565b92915050565b60006020820190506122b46000830184611e20565b92915050565b600060208201905081810360008301526122d48184611eae565b905092915050565b600060208201905081810360008301526122f581611f18565b9050919050565b6000602082019050818103600083015261231581611f3b565b9050919050565b6000602082019050818103600083015261233581611f5e565b9050919050565b6000602082019050818103600083015261235581611f81565b9050919050565b6000602082019050818103600083015261237581611fa4565b9050919050565b6000602082019050818103600083015261239581611fc7565b9050919050565b600060208201905081810360008301526123b58161200d565b9050919050565b600060208201905081810360008301526123d581612053565b9050919050565b600060208201905081810360008301526123f581612076565b9050919050565b6000602082019050818103600083015261241581612099565b9050919050565b600060208201905061243160008301846120bc565b92915050565b600060408201905061244c60008301856120bc565b61245960208301846120bc565b9392505050565b6000808335600160200384360303811261247d5761247c612876565b5b80840192508235915067ffffffffffffffff82111561249f5761249e612871565b5b6020830192506001820236038313156124bb576124ba612885565b5b509250929050565b6000819050919050565b6000819050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061258760208401846116e2565b905092915050565b600080833560016020038436030381126125ac576125ab612894565b5b83810192508235915060208301925067ffffffffffffffff8211156125d4576125d3612862565b5b6001820236038413156125ea576125e961287b565b5b509250929050565b60006125fd82612716565b915061260883612716565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561263d5761263c6127d5565b5b828201905092915050565b600061265382612716565b915061265e83612716565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612697576126966127d5565b5b828202905092915050565b60006126ad826126f6565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561274d578082015181840152602081019050612732565b8381111561275c576000848401525b50505050565b600061276d82612716565b91506000821415612781576127806127d5565b5b600182039050919050565b600061279782612716565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156127ca576127c96127d5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206d697373696e67206465706560008201527f6e64656e63790000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206c656e677468206d69736d6160008201527f7463680000000000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a20696e73756666696369656e7460008201527f2064656c61790000000000000000000000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20616c60008201527f7265616479207363686564756c65640000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20697360008201527f206e6f7420726561647900000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a206f7065726174696f6e20636160008201527f6e6e6f742062652063616e63656c6c6564000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a2063616c6c6572206d7573742060008201527f62652074696d656c6f636b000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f54696d656c6f636b436f6e74726f6c6c65723a20756e6465726c79696e67207460008201527f72616e73616374696f6e20726576657274656400000000000000000000000000602082015250565b612bfa816126a2565b8114612c0557600080fd5b50565b612c11816126c0565b8114612c1c57600080fd5b50565b612c28816126ca565b8114612c3357600080fd5b50565b612c3f81612716565b8114612c4a57600080fd5b5056fea264697066735822122081a717da1ccfe71817df3a151159f023bbfc1ecf0b52866345c84723ee19242864736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000002a300000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000fa7d2a996ac6350f4b56c043112da0366a59b74c0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000fa7d2a996ac6350f4b56c043112da0366a59b74c
-----Decoded View---------------
Arg [0] : minDelay (uint256): 172800
Arg [1] : proposers (address[]): 0xFa7D2a996aC6350f4b56C043112Da0366a59b74c
Arg [2] : executors (address[]): 0xFa7D2a996aC6350f4b56C043112Da0366a59b74c
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000002a300
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000fa7d2a996ac6350f4b56c043112da0366a59b74c
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 000000000000000000000000fa7d2a996ac6350f4b56c043112da0366a59b74c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.