Contract Overview
Balance:
0 BNB
Token:
My Name Tag:
Not Available
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
StdReferenceBasic
Compiler Version
v0.6.11+commit.5ef660b1
Contract Source Code (Solidity)
/** *Submitted for verification at BscScan.com on 2020-10-07 */ pragma solidity 0.6.11; pragma experimental ABIEncoderV2; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /* * @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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * 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 { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @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 {_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) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @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 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 { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _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 { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _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 { 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 { emit RoleAdminChanged(role, _roles[role].adminRole, adminRole); _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } } interface IStdReference { /// A structure returned whenever someone requests for standard reference data. struct ReferenceData { uint256 rate; // base/quote exchange rate, multiplied by 1e18. uint256 lastUpdatedBase; // UNIX epoch of the last time when base price gets updated. uint256 lastUpdatedQuote; // UNIX epoch of the last time when quote price gets updated. } /// Returns the price data for the given base/quote pair. Revert if not available. function getReferenceData(string memory _base, string memory _quote) external view returns (ReferenceData memory); /// Similar to getReferenceData, but with multiple base/quote pairs at once. function getReferenceDataBulk(string[] memory _bases, string[] memory _quotes) external view returns (ReferenceData[] memory); } abstract contract StdReferenceBase is IStdReference { function getReferenceData(string memory _base, string memory _quote) public virtual override view returns (ReferenceData memory); function getReferenceDataBulk(string[] memory _bases, string[] memory _quotes) public override view returns (ReferenceData[] memory) { require(_bases.length == _quotes.length, "BAD_INPUT_LENGTH"); uint256 len = _bases.length; ReferenceData[] memory results = new ReferenceData[](len); for (uint256 idx = 0; idx < len; idx++) { results[idx] = getReferenceData(_bases[idx], _quotes[idx]); } return results; } } contract StdReferenceBasic is AccessControl, StdReferenceBase { event RefDataUpdate( string symbol, uint64 rate, uint64 resolveTime, uint64 requestId ); struct RefData { uint64 rate; // USD-rate, multiplied by 1e9. uint64 resolveTime; // UNIX epoch when data is last resolved. uint64 requestId; // BandChain request identifier for this data. } mapping(string => RefData) public refs; // Mapping from symbol to ref data. bytes32 public constant RELAYER_ROLE = keccak256("RELAYER_ROLE"); constructor() public { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(RELAYER_ROLE, msg.sender); } function relay( string[] memory _symbols, uint64[] memory _rates, uint64[] memory _resolveTimes, uint64[] memory _requestIds ) external { require(hasRole(RELAYER_ROLE, msg.sender), "NOT_A_RELAYER"); uint256 len = _symbols.length; require(_rates.length == len, "BAD_RATES_LENGTH"); require(_resolveTimes.length == len, "BAD_RESOLVE_TIMES_LENGTH"); require(_requestIds.length == len, "BAD_REQUEST_IDS_LENGTH"); for (uint256 idx = 0; idx < len; idx++) { refs[_symbols[idx]] = RefData({ rate: _rates[idx], resolveTime: _resolveTimes[idx], requestId: _requestIds[idx] }); emit RefDataUpdate( _symbols[idx], _rates[idx], _resolveTimes[idx], _requestIds[idx] ); } } function getReferenceData(string memory _base, string memory _quote) public override view returns (ReferenceData memory) { (uint256 baseRate, uint256 baseLastUpdate) = _getRefData(_base); (uint256 quoteRate, uint256 quoteLastUpdate) = _getRefData(_quote); return ReferenceData({ rate: (baseRate * 1e18) / quoteRate, lastUpdatedBase: baseLastUpdate, lastUpdatedQuote: quoteLastUpdate }); } function _getRefData(string memory _symbol) internal view returns (uint256 rate, uint256 lastUpdate) { if (keccak256(bytes(_symbol)) == keccak256(bytes("USD"))) { return (1e9, now); } RefData storage refData = refs[_symbol]; require(refData.resolveTime > 0, "REF_DATA_NOT_AVAILABLE"); return (uint256(refData.rate), uint256(refData.resolveTime)); } }
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"symbol","type":"string"},{"indexed":false,"internalType":"uint64","name":"rate","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"resolveTime","type":"uint64"},{"indexed":false,"internalType":"uint64","name":"requestId","type":"uint64"}],"name":"RefDataUpdate","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":"RELAYER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"},{"internalType":"string","name":"_quote","type":"string"}],"name":"getReferenceData","outputs":[{"components":[{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedBase","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedQuote","type":"uint256"}],"internalType":"struct IStdReference.ReferenceData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_bases","type":"string[]"},{"internalType":"string[]","name":"_quotes","type":"string[]"}],"name":"getReferenceDataBulk","outputs":[{"components":[{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedBase","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedQuote","type":"uint256"}],"internalType":"struct IStdReference.ReferenceData[]","name":"","type":"tuple[]"}],"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":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","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":"string","name":"","type":"string"}],"name":"refs","outputs":[{"internalType":"uint64","name":"rate","type":"uint64"},{"internalType":"uint64","name":"resolveTime","type":"uint64"},{"internalType":"uint64","name":"requestId","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_symbols","type":"string[]"},{"internalType":"uint64[]","name":"_rates","type":"uint64[]"},{"internalType":"uint64[]","name":"_resolveTimes","type":"uint64[]"},{"internalType":"uint64[]","name":"_requestIds","type":"uint64[]"}],"name":"relay","outputs":[],"stateMutability":"nonpayable","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50620000286000336001600160e01b036200005916565b620000536040516200003a9062000191565b604051908190039020336001600160e01b036200005916565b620001a9565b6200006e82826001600160e01b036200007216565b5050565b600082815260208181526040909120620000979183906200072c620000f4821b17901c565b156200006e57620000b06001600160e01b036200011d16565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000114836001600160a01b0384166001600160e01b036200012116565b90505b92915050565b3390565b60006200013883836001600160e01b036200017916565b620001705750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000117565b50600062000117565b60009081526001919091016020526040902054151590565b6b52454c415945525f524f4c4560a01b8152600c0190565b61124c80620001b96000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806391d148541161008c578063ab48074111610066578063ab480741146101a8578063ca15c873146101ca578063d547741f146101dd578063e42a071b146101f0576100cf565b806391d1485414610178578063926d7d7f14610198578063a217fddf146101a0576100cf565b8063248a9ca3146100d45780632f2ff15d146100fd57806336568abe14610112578063418d78d41461012557806365555bcc146101385780639010d07c14610158575b600080fd5b6100e76100e2366004610d19565b610210565b6040516100f49190610ed6565b60405180910390f35b61011061010b366004610d31565b610225565b005b610110610120366004610d31565b610276565b610110610133366004610c72565b6102b8565b61014b610146366004610dc6565b610501565b6040516100f49190611170565b61016b610166366004610d6b565b610563565b6040516100f49190610e69565b61018b610186366004610d31565b610588565b6040516100f49190610ecb565b6100e76105a6565b6100e76105bd565b6101bb6101b6366004610d8c565b6105c2565b6040516100f49392919061117e565b6100e76101d8366004610d19565b6105fe565b6101106101eb366004610d31565b610615565b6102036101fe366004610c12565b61064f565b6040516100f49190610e7d565b60009081526020819052604090206002015490565b60008281526020819052604090206002015461024390610186610741565b6102685760405162461bcd60e51b815260040161025f90610fd1565b60405180910390fd5b6102728282610745565b5050565b61027e610741565b6001600160a01b0316816001600160a01b0316146102ae5760405162461bcd60e51b815260040161025f90611121565b61027282826107b4565b6102d56040516102c790610e51565b604051809103902033610588565b6102f15760405162461bcd60e51b815260040161025f906110fa565b8351835181146103135760405162461bcd60e51b815260040161025f90611050565b808351146103335760405162461bcd60e51b815260040161025f90610f9a565b808251146103535760405162461bcd60e51b815260040161025f906110ca565b60005b818110156104f957604051806060016040528086838151811061037557fe5b60200260200101516001600160401b0316815260200185838151811061039757fe5b60200260200101516001600160401b031681526020018483815181106103b957fe5b60200260200101516001600160401b031681525060018783815181106103db57fe5b60200260200101516040516103f09190610e35565b90815260408051602092819003830190208351815493850151949092015167ffffffffffffffff199093166001600160401b03928316176fffffffffffffffff00000000000000001916600160401b948316949094029390931767ffffffffffffffff60801b1916600160801b919092160217905585517fa20e495bf7cbb7bc0ecf70d514a8e6da116c9b8b2a4e1c25d06b6b176db0de0f9087908390811061049557fe5b60200260200101518683815181106104a957fe5b60200260200101518684815181106104bd57fe5b60200260200101518685815181106104d157fe5b60200260200101516040516104e99493929190610edf565b60405180910390a1600101610356565b505050505050565b610509610aa2565b60008061051585610823565b9150915060008061052586610823565b9150915060405180606001604052808386670de0b6b3a7640000028161054757fe5b0481526020810194909452604090930152509150505b92915050565b6000828152602081905260408120610581908363ffffffff6108f016565b9392505050565b6000828152602081905260408120610581908363ffffffff6108fc16565b6040516105b290610e51565b604051809103902081565b600081565b80516020818301810180516001825292820191909301209152546001600160401b0380821691600160401b8104821691600160801b9091041683565b600081815260208190526040812061055d90610911565b60008281526020819052604090206002015461063390610186610741565b6102ae5760405162461bcd60e51b815260040161025f9061107a565b606081518351146106725760405162461bcd60e51b815260040161025f90610f70565b82516060816001600160401b038111801561068c57600080fd5b506040519080825280602002602001820160405280156106c657816020015b6106b3610aa2565b8152602001906001900390816106ab5790505b50905060005b82811015610723576107048682815181106106e357fe5b60200260200101518683815181106106f757fe5b6020026020010151610501565b82828151811061071057fe5b60209081029190910101526001016106cc565b50949350505050565b6000610581836001600160a01b03841661091c565b3390565b6000828152602081905260409020610763908263ffffffff61072c16565b1561027257610770610741565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206107d2908263ffffffff61096616565b15610272576107df610741565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6040805180820190915260038152621554d160ea1b60209182015281519082012060009081907fc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e141561087e5750633b9aca009050426108eb565b60006001846040516108909190610e35565b90815260405190819003602001902080549091506001600160401b03600160401b909104166108d15760405162461bcd60e51b815260040161025f90611020565b546001600160401b038082169350600160401b9091041690505b915091565b6000610581838361097b565b6000610581836001600160a01b0384166109c0565b600061055d826109d8565b600061092883836109c0565b61095e5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561055d565b50600061055d565b6000610581836001600160a01b0384166109dc565b8154600090821061099e5760405162461bcd60e51b815260040161025f90610f2e565b8260000182815481106109ad57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008181526001830160205260408120548015610a985783546000198083019190810190600090879083908110610a0f57fe5b9060005260206000200154905080876000018481548110610a2c57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080610a5c57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061055d565b600091505061055d565b60405180606001604052806000815260200160008152602001600081525090565b600082601f830112610ad3578081fd5b8135610ae6610ae1826111c7565b6111a1565b818152915060208083019084810160005b84811015610b2057610b0e888484358a0101610baa565b84529282019290820190600101610af7565b505050505092915050565b600082601f830112610b3b578081fd5b8135610b49610ae1826111c7565b818152915060208083019084810181840286018201871015610b6a57600080fd5b6000805b85811015610b9e5782356001600160401b0381168114610b8c578283fd5b85529383019391830191600101610b6e565b50505050505092915050565b600082601f830112610bba578081fd5b81356001600160401b03811115610bcf578182fd5b610be2601f8201601f19166020016111a1565b9150808252836020828501011115610bf957600080fd5b8060208401602084013760009082016020015292915050565b60008060408385031215610c24578182fd5b82356001600160401b0380821115610c3a578384fd5b610c4686838701610ac3565b93506020850135915080821115610c5b578283fd5b50610c6885828601610ac3565b9150509250929050565b60008060008060808587031215610c87578182fd5b84356001600160401b0380821115610c9d578384fd5b610ca988838901610ac3565b95506020870135915080821115610cbe578384fd5b610cca88838901610b2b565b94506040870135915080821115610cdf578384fd5b610ceb88838901610b2b565b93506060870135915080821115610d00578283fd5b50610d0d87828801610b2b565b91505092959194509250565b600060208284031215610d2a578081fd5b5035919050565b60008060408385031215610d43578182fd5b8235915060208301356001600160a01b0381168114610d60578182fd5b809150509250929050565b60008060408385031215610d7d578182fd5b50508035926020909101359150565b600060208284031215610d9d578081fd5b81356001600160401b03811115610db2578182fd5b610dbe84828501610baa565b949350505050565b60008060408385031215610dd8578182fd5b82356001600160401b0380821115610dee578384fd5b610dfa86838701610baa565b93506020850135915080821115610e0f578283fd5b50610c6885828601610baa565b8051825260208082015190830152604090810151910152565b60008251610e478184602087016111e6565b9190910192915050565b6b52454c415945525f524f4c4560a01b8152600c0190565b6001600160a01b0391909116815260200190565b6020808252825182820181905260009190848201906040850190845b81811015610ebf57610eac838551610e1c565b9284019260609290920191600101610e99565b50909695505050505050565b901515815260200190565b90815260200190565b6000608082528551806080840152610efe8160a0850160208a016111e6565b6001600160401b03958616602084015293851660408301525092166060830152601f01601f19160160a001919050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526010908201526f0848288be929ca0aaa8be988a9c8ea8960831b604082015260600190565b60208082526018908201527f4241445f5245534f4c56455f54494d45535f4c454e4754480000000000000000604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b6020808252601690820152755245465f444154415f4e4f545f415641494c41424c4560501b604082015260600190565b60208082526010908201526f0848288bea482a88aa6be988a9c8ea8960831b604082015260600190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b6020808252601690820152750848288bea48aa2aa8aa6a8be9288a6be988a9c8ea8960531b604082015260600190565b6020808252600d908201526c2727aa2fa0afa922a620aca2a960991b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6060810161055d8284610e1c565b6001600160401b0393841681529183166020830152909116604082015260600190565b6040518181016001600160401b03811182821017156111bf57600080fd5b604052919050565b60006001600160401b038211156111dc578081fd5b5060209081020190565b60005b838110156112015781810151838201526020016111e9565b83811115611210576000848401525b5050505056fea26469706673582212207dc4b7b428b1a958748e3e0c2cb8a7e547f2f00eadcc36ff924b596b2822ff6b64736f6c634300060b0033
Deployed ByteCode Sourcemap
24218:2665:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19328:114;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19704:227;;;;;;:::i;:::-;;:::i;:::-;;20913:209;;;;;;:::i;:::-;;:::i;24945:938::-;;;;;;:::i;:::-;;:::i;25891:538::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19001:138::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;17962:139::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;24735:64::-;;;:::i;16707:49::-;;;:::i;24654:38::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;18275:127::-;;;;;;:::i;:::-;;:::i;20176:230::-;;;;;;:::i;:::-;;:::i;23690:519::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19328:114::-;19385:7;19412:12;;;;;;;;;;:22;;;;19328:114::o;19704:227::-;19796:6;:12;;;;;;;;;;:22;;;19788:45;;19820:12;:10;:12::i;19788:45::-;19780:105;;;;-1:-1:-1;;;19780:105:0;;;;;;;:::i;:::-;;;;;;;;;19898:25;19909:4;19915:7;19898:10;:25::i;:::-;19704:227;;:::o;20913:209::-;21011:12;:10;:12::i;:::-;-1:-1:-1;;;;;21000:23:0;:7;-1:-1:-1;;;;;21000:23:0;;20992:83;;;;-1:-1:-1;;;20992:83:0;;;;;;;:::i;:::-;21088:26;21100:4;21106:7;21088:11;:26::i;24945:938::-;25141:33;24774:25;;;;;:::i;:::-;;;;;;;;25163:10;25141:7;:33::i;:::-;25133:59;;;;-1:-1:-1;;;25133:59:0;;;;;;;:::i;:::-;25217:15;;25251:13;;:20;;25243:49;;;;-1:-1:-1;;;25243:49:0;;;;;;;:::i;:::-;25335:3;25311:13;:20;:27;25303:64;;;;-1:-1:-1;;;25303:64:0;;;;;;;:::i;:::-;25408:3;25386:11;:18;:25;25378:60;;;;-1:-1:-1;;;25378:60:0;;;;;;;:::i;:::-;25454:11;25449:427;25477:3;25471;:9;25449:427;;;25526:156;;;;;;;;25559:6;25566:3;25559:11;;;;;;;;;;;;;;-1:-1:-1;;;;;25526:156:0;;;;;25602:13;25616:3;25602:18;;;;;;;;;;;;;;-1:-1:-1;;;;;25526:156:0;;;;;25650:11;25662:3;25650:16;;;;;;;;;;;;;;-1:-1:-1;;;;;25526:156:0;;;;25504:4;25509:8;25518:3;25509:13;;;;;;;;;;;;;;25504:19;;;;;;:::i;:::-;;;;;;;;;;;;;;;;:178;;;;;;;;;;;;;-1:-1:-1;;25504:178:0;;;-1:-1:-1;;;;;25504:178:0;;;;-1:-1:-1;;25504:178:0;-1:-1:-1;;;25504:178:0;;;;;;;;;;;-1:-1:-1;;;;25504:178:0;-1:-1:-1;;;25504:178:0;;;;;;;;25734:13;;25702:162;;25734:13;;25743:3;;25734:13;;;;;;;;;;;;25766:6;25773:3;25766:11;;;;;;;;;;;;;;25796:13;25810:3;25796:18;;;;;;;;;;;;;;25833:11;25845:3;25833:16;;;;;;;;;;;;;;25702:162;;;;;;;;;:::i;:::-;;;;;;;;25482:5;;25449:427;;;;24945:938;;;;;:::o;25891:538::-;26026:20;;:::i;:::-;26065:16;26083:22;26109:18;26121:5;26109:11;:18::i;:::-;26064:63;;;;26139:17;26158:23;26185:19;26197:6;26185:11;:19::i;:::-;26138:66;;;;26235:186;;;;;;;;26294:9;26275:8;26286:4;26275:15;26274:29;;;;;;26235:186;;;;;;;;;;;;;;-1:-1:-1;26215:206:0;-1:-1:-1;;25891:538:0;;;;;:::o;19001:138::-;19074:7;19101:12;;;;;;;;;;:30;;19125:5;19101:30;:23;:30;:::i;:::-;19094:37;19001:138;-1:-1:-1;;;19001:138:0:o;17962:139::-;18031:4;18055:12;;;;;;;;;;:38;;18085:7;18055:38;:29;:38;:::i;24735:64::-;24774:25;;;;;:::i;:::-;;;;;;;;24735:64;:::o;16707:49::-;16752:4;16707:49;:::o;24654:38::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24654:38:0;;;;-1:-1:-1;;;24654:38:0;;;;;-1:-1:-1;;;24654:38:0;;;;;:::o;18275:127::-;18338:7;18365:12;;;;;;;;;;:29;;:27;:29::i;20176:230::-;20269:6;:12;;;;;;;;;;:22;;;20261:45;;20293:12;:10;:12::i;20261:45::-;20253:106;;;;-1:-1:-1;;;20253:106:0;;;;;;;:::i;23690:519::-;23835:22;23900:7;:14;23883:6;:13;:31;23875:60;;;;-1:-1:-1;;;23875:60:0;;;;;;;:::i;:::-;23960:13;;23984:30;23960:13;-1:-1:-1;;;;;24017:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;23984:57:0;-1:-1:-1;24057:11:0;24052:125;24080:3;24074;:9;24052:125;;;24122:43;24139:6;24146:3;24139:11;;;;;;;;;;;;;;24152:7;24160:3;24152:12;;;;;;;;;;;;;;24122:16;:43::i;:::-;24107:7;24115:3;24107:12;;;;;;;;;;;;;;;;;:58;24085:5;;24052:125;;;-1:-1:-1;24194:7:0;23690:519;-1:-1:-1;;;;23690:519:0:o;5012:143::-;5082:4;5106:41;5111:3;-1:-1:-1;;;;;5131:14:0;;5106:4;:41::i;14744:106::-;14832:10;14744:106;:::o;22156:188::-;22230:6;:12;;;;;;;;;;:33;;22255:7;22230:33;:24;:33;:::i;:::-;22226:111;;;22312:12;:10;:12::i;:::-;-1:-1:-1;;;;;22285:40:0;22303:7;-1:-1:-1;;;;;22285:40:0;22297:4;22285:40;;;;;;;;;;22156:188;;:::o;22352:192::-;22427:6;:12;;;;;;;;;;:36;;22455:7;22427:36;:27;:36;:::i;:::-;22423:114;;;22512:12;:10;:12::i;:::-;-1:-1:-1;;;;;22485:40:0;22503:7;-1:-1:-1;;;;;22485:40:0;22497:4;22485:40;;;;;;;;;;22352:192;;:::o;26437:443::-;26624:12;;;;;;;;;;;;-1:-1:-1;;;26624:12:0;;;;;26585:25;;;;;;26531:12;;;;26614:23;26585:52;26581:102;;;-1:-1:-1;26662:3:0;;-1:-1:-1;26667:3:0;26654:17;;26581:102;26693:23;26719:4;26724:7;26719:13;;;;;;:::i;:::-;;;;;;;;;;;;;;26751:19;;26719:13;;-1:-1:-1;;;;;;;;;26751:19:0;;;;26743:58;;;;-1:-1:-1;;;26743:58:0;;;;;;;:::i;:::-;26828:12;-1:-1:-1;;;;;26828:12:0;;;;-1:-1:-1;;;;26851:19:0;;;;;-1:-1:-1;26437:443:0;;;;:::o;6271:149::-;6345:7;6388:22;6392:3;6404:5;6388:3;:22::i;5566:158::-;5646:4;5670:46;5680:3;-1:-1:-1;;;;;5700:14:0;;5670:9;:46::i;5810:117::-;5873:7;5900:19;5908:3;5900:7;:19::i;1666:414::-;1729:4;1751:21;1761:3;1766:5;1751:9;:21::i;:::-;1746:327;;-1:-1:-1;1789:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;1972:18;;1950:19;;;:12;;;:19;;;;;;:40;;;;2005:11;;1746:327;-1:-1:-1;2056:5:0;2049:12;;5331:149;5404:4;5428:44;5436:3;-1:-1:-1;;;;;5456:14:0;;5428:7;:44::i;4554:204::-;4649:18;;4621:7;;4649:26;-1:-1:-1;4641:73:0;;;;-1:-1:-1;;;4641:73:0;;;;;;;:::i;:::-;4732:3;:11;;4744:5;4732:18;;;;;;;;;;;;;;;;4725:25;;4554:204;;;;:::o;3886:129::-;3959:4;3983:19;;;:12;;;;;:19;;;;;;:24;;;3886:129::o;4101:109::-;4184:18;;4101:109::o;2256:1544::-;2322:4;2461:19;;;:12;;;:19;;;;;;2497:15;;2493:1300;;2932:18;;-1:-1:-1;;2883:14:0;;;;2932:22;;;;2859:21;;2932:3;;:22;;3219;;;;;;;;;;;;;;3199:42;;3365:9;3336:3;:11;;3348:13;3336:26;;;;;;;;;;;;;;;;;;;:38;;;;3442:23;;;3484:1;3442:12;;;:23;;;;;;3468:17;;;3442:43;;3594:17;;3442:3;;3594:17;;;;;;;;;;;;;;;;;;;;;;3689:3;:12;;:19;3702:5;3689:19;;;;;;;;;;;3682:26;;;3732:4;3725:11;;;;;;;;2493:1300;3776:5;3769:12;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;:::o;159:708::-;;286:3;279:4;271:6;267:17;263:27;253:2;;-1:-1;;294:12;253:2;341:6;328:20;363:90;378:74;445:6;378:74;:::i;:::-;363:90;:::i;:::-;481:21;;;354:99;-1:-1;525:4;538:14;;;;513:17;;;633:1;618:243;643:6;640:1;637:13;618:243;;;750:47;793:3;525:4;726:3;713:17;517:6;701:30;;750:47;:::i;:::-;738:60;;812:14;;;;840;;;;665:1;658:9;618:243;;;622:14;;;;;246:621;;;;:::o;892:704::-;;1008:3;1001:4;993:6;989:17;985:27;975:2;;-1:-1;;1016:12;975:2;1063:6;1050:20;1085:79;1100:63;1156:6;1100:63;:::i;1085:79::-;1192:21;;;1076:88;-1:-1;1236:4;1249:14;;;;1224:17;;;1338;;;1329:27;;;;1326:36;-1:-1;1323:2;;;1375:1;;1365:12;1323:2;1400:1;;1385:205;1410:6;1407:1;1404:13;1385:205;;;2408:6;2395:20;-1:-1;;;;;26082:5;25047:30;26058:5;26055:34;26045:2;;1400:1;;26093:12;26045:2;1478:49;;1541:14;;;;1569;;;;1432:1;1425:9;1385:205;;;1389:14;;;;;;968:628;;;;:::o;1742:442::-;;1844:3;1837:4;1829:6;1825:17;1821:27;1811:2;;-1:-1;;1852:12;1811:2;1899:6;1886:20;-1:-1;;;;;23138:6;23135:30;23132:2;;;-1:-1;;23168:12;23132:2;1921:65;23241:9;23222:17;;-1:-1;;23218:33;23309:4;23299:15;1921:65;:::i;:::-;1912:74;;2006:6;1999:5;1992:21;2110:3;23309:4;2101:6;2034;2092:16;;2089:25;2086:2;;;2127:1;;2117:12;2086:2;25171:6;23309:4;2034:6;2030:17;23309:4;2068:5;2064:16;25148:30;25227:1;25209:16;;;23309:4;25209:16;25202:27;2068:5;1804:380;-1:-1;;1804:380::o;2464:678::-;;;2655:2;2643:9;2634:7;2630:23;2626:32;2623:2;;;-1:-1;;2661:12;2623:2;2719:17;2706:31;-1:-1;;;;;2757:18;2749:6;2746:30;2743:2;;;-1:-1;;2779:12;2743:2;2809:88;2889:7;2880:6;2869:9;2865:22;2809:88;:::i;:::-;2799:98;;2962:2;2951:9;2947:18;2934:32;2920:46;;2757:18;2978:6;2975:30;2972:2;;;-1:-1;;3008:12;2972:2;;3038:88;3118:7;3109:6;3098:9;3094:22;3038:88;:::i;:::-;3028:98;;;2617:525;;;;;:::o;3149:1175::-;;;;;3411:3;3399:9;3390:7;3386:23;3382:33;3379:2;;;-1:-1;;3418:12;3379:2;3476:17;3463:31;-1:-1;;;;;3514:18;3506:6;3503:30;3500:2;;;-1:-1;;3536:12;3500:2;3566:88;3646:7;3637:6;3626:9;3622:22;3566:88;:::i;:::-;3556:98;;3719:2;3708:9;3704:18;3691:32;3677:46;;3514:18;3735:6;3732:30;3729:2;;;-1:-1;;3765:12;3729:2;3795:77;3864:7;3855:6;3844:9;3840:22;3795:77;:::i;:::-;3785:87;;3937:2;3926:9;3922:18;3909:32;3895:46;;3514:18;3953:6;3950:30;3947:2;;;-1:-1;;3983:12;3947:2;4013:77;4082:7;4073:6;4062:9;4058:22;4013:77;:::i;:::-;4003:87;;4155:2;4144:9;4140:18;4127:32;4113:46;;3514:18;4171:6;4168:30;4165:2;;;-1:-1;;4201:12;4165:2;;4231:77;4300:7;4291:6;4280:9;4276:22;4231:77;:::i;:::-;4221:87;;;3373:951;;;;;;;:::o;4331:241::-;;4435:2;4423:9;4414:7;4410:23;4406:32;4403:2;;;-1:-1;;4441:12;4403:2;-1:-1;1671:20;;4397:175;-1:-1;4397:175::o;4579:366::-;;;4700:2;4688:9;4679:7;4675:23;4671:32;4668:2;;;-1:-1;;4706:12;4668:2;1671:20;;;-1:-1;4858:2;4897:22;;72:20;-1:-1;;;;;24841:54;;25684:35;;25674:2;;-1:-1;;25723:12;25674:2;4866:63;;;;4662:283;;;;;:::o;4952:366::-;;;5073:2;5061:9;5052:7;5048:23;5044:32;5041:2;;;-1:-1;;5079:12;5041:2;-1:-1;;1671:20;;;5231:2;5270:22;;;2259:20;;-1:-1;5035:283::o;5325:347::-;;5439:2;5427:9;5418:7;5414:23;5410:32;5407:2;;;-1:-1;;5445:12;5407:2;5503:17;5490:31;-1:-1;;;;;5533:6;5530:30;5527:2;;;-1:-1;;5563:12;5527:2;5593:63;5648:7;5639:6;5628:9;5624:22;5593:63;:::i;:::-;5583:73;5401:271;-1:-1;;;;5401:271::o;5679:578::-;;;5820:2;5808:9;5799:7;5795:23;5791:32;5788:2;;;-1:-1;;5826:12;5788:2;5884:17;5871:31;-1:-1;;;;;5922:18;5914:6;5911:30;5908:2;;;-1:-1;;5944:12;5908:2;5974:63;6029:7;6020:6;6009:9;6005:22;5974:63;:::i;:::-;5964:73;;6102:2;6091:9;6087:18;6074:32;6060:46;;5922:18;6118:6;6115:30;6112:2;;;-1:-1;;6148:12;6112:2;;6178:63;6233:7;6224:6;6213:9;6209:22;6178:63;:::i;12624:653::-;12833:23;;7891:37;;13015:4;13004:16;;;12998:23;13075:14;;;7891:37;13181:4;13170:16;;;13164:23;13241:14;;7891:37;12740:537::o;14380:275::-;;8457:5;23652:12;8569:52;8614:6;8609:3;8602:4;8595:5;8591:16;8569:52;:::i;:::-;8633:16;;;;;14516:139;-1:-1;;14516:139::o;14662:381::-;-1:-1;;;11750:35;;11734:2;11804:12;;14851:192::o;15050:222::-;-1:-1;;;;;24841:54;;;;6637:37;;15177:2;15162:18;;15148:124::o;15279:490::-;15516:2;15530:47;;;23652:12;;15501:18;;;24116:19;;;15279:490;;15516:2;23476:14;;;;24156;;;;15279:490;7329:350;7354:6;7351:1;7348:13;7329:350;;;6412:106;6514:3;7421:6;7415:13;6412:106;:::i;:::-;23941:14;;;;6547:4;6538:14;;;;;7376:1;7369:9;7329:350;;;-1:-1;15583:176;;15487:282;-1:-1;;;;;;15487:282::o;15776:210::-;24674:13;;24667:21;7774:34;;15897:2;15882:18;;15868:118::o;15993:222::-;7891:37;;;16120:2;16105:18;;16091:124::o;16222:632::-;;16447:3;16469:17;16462:47;8085:5;23652:12;24128:6;16447:3;16436:9;16432:19;24116;8179:52;8224:6;24156:14;16436:9;24156:14;24165:4;8205:5;8201:16;8179:52;:::i;:::-;-1:-1;;;;;25047:30;;;24165:4;16663:18;;14332:36;25047:30;;;16759:2;16744:18;;14332:36;-1:-1;25047:30;;16840:2;16825:18;;14332:36;23241:9;25588:14;-1:-1;;25584:28;8243:39;24156:14;8243:39;;16418:436;-1:-1;16418:436::o;16861:416::-;17061:2;17075:47;;;8886:2;17046:18;;;24116:19;8922:34;24156:14;;;8902:55;-1:-1;;;8977:12;;;8970:26;9015:12;;;17032:245::o;17284:416::-;17484:2;17498:47;;;9266:2;17469:18;;;24116:19;-1:-1;;;24156:14;;;9282:39;9340:12;;;17455:245::o;17707:416::-;17907:2;17921:47;;;9591:2;17892:18;;;24116:19;9627:26;24156:14;;;9607:47;9673:12;;;17878:245::o;18130:416::-;18330:2;18344:47;;;9924:2;18315:18;;;24116:19;9960:34;24156:14;;;9940:55;-1:-1;;;10015:12;;;10008:39;10066:12;;;18301:245::o;18553:416::-;18753:2;18767:47;;;10317:2;18738:18;;;24116:19;-1:-1;;;24156:14;;;10333:45;10397:12;;;18724:245::o;18976:416::-;19176:2;19190:47;;;10648:2;19161:18;;;24116:19;-1:-1;;;24156:14;;;10664:39;10722:12;;;19147:245::o;19399:416::-;19599:2;19613:47;;;10973:2;19584:18;;;24116:19;11009:34;24156:14;;;10989:55;-1:-1;;;11064:12;;;11057:40;11116:12;;;19570:245::o;19822:416::-;20022:2;20036:47;;;11367:2;20007:18;;;24116:19;-1:-1;;;24156:14;;;11383:45;11447:12;;;19993:245::o;20245:416::-;20445:2;20459:47;;;12055:2;20430:18;;;24116:19;-1:-1;;;24156:14;;;12071:36;12126:12;;;20416:245::o;20668:416::-;20868:2;20882:47;;;12377:2;20853:18;;;24116:19;12413:34;24156:14;;;12393:55;-1:-1;;;12468:12;;;12461:39;12519:12;;;20839:245::o;21091:342::-;21278:2;21263:18;;21292:131;21267:9;21396:6;21292:131;:::i;21669:432::-;-1:-1;;;;;25047:30;;;14332:36;;25047:30;;;22006:2;21991:18;;14332:36;25047:30;;;22087:2;22072:18;;14332:36;21846:2;21831:18;;21817:284::o;22108:256::-;22170:2;22164:9;22196:17;;;-1:-1;;;;;22256:34;;22292:22;;;22253:62;22250:2;;;22328:1;;22318:12;22250:2;22170;22337:22;22148:216;;-1:-1;22148:216::o;22371:314::-;;-1:-1;;;;;22532:6;22529:30;22526:2;;;-1:-1;;22562:12;22526:2;-1:-1;22607:4;22595:17;;;22660:15;;22463:222::o;25244:268::-;25309:1;25316:101;25330:6;25327:1;25324:13;25316:101;;;25397:11;;;25391:18;25378:11;;;25371:39;25352:2;25345:10;25316:101;;;25432:6;25429:1;25426:13;25423:2;;;25309:1;25488:6;25483:3;25479:16;25472:27;25423:2;;25293:219;;;:::o
Swarm Source
ipfs://7dc4b7b428b1a958748e3e0c2cb8a7e547f2f00eadcc36ff924b596b2822ff6b
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|